(mut self, id: impl Into<Id>)
| 114 | /// Accepts an `Id` or a `&'static str` label. |
| 115 | #[inline] |
| 116 | pub fn id(mut self, id: impl Into<Id>) -> Self { |
| 117 | self.id = Some(id.into()); |
| 118 | self |
| 119 | } |
| 120 | |
| 121 | /// Sets the aspect ratio of the element. |
| 122 | #[inline] |
no outgoing calls