pub struct li {
pub attributes: <li as TypedElement>::Attributes,
pub other_attributes: Vec<(String, Option<String>)>,
}
Available on crate feature
typed
only.Fields§
§attributes: <li as TypedElement>::Attributes
§other_attributes: Vec<(String, Option<String>)>
Trait Implementations§
Source§impl TypedElement for li
impl TypedElement for li
Source§type Attributes = LiAttributes
type Attributes = LiAttributes
The attributes of the element.
Source§fn from_attributes(
attributes: <li as TypedElement>::Attributes,
other_attributes: Vec<(String, Option<String>)>,
) -> li
fn from_attributes( attributes: <li as TypedElement>::Attributes, other_attributes: Vec<(String, Option<String>)>, ) -> li
Create an element from its attributes.
Auto Trait Implementations§
impl Freeze for li
impl RefUnwindSafe for li
impl Send for li
impl Sync for li
impl Unpin for li
impl UnwindSafe for li
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more