pub struct html {
pub attributes: <html as TypedElement>::Attributes,
pub other_attributes: Vec<(String, Option<String>)>,
}
Available on crate feature
typed
only.Fields§
§attributes: <html as TypedElement>::Attributes
§other_attributes: Vec<(String, Option<String>)>
Trait Implementations§
Source§impl TypedElement for html
impl TypedElement for html
Source§type Attributes = HtmlAttributes
type Attributes = HtmlAttributes
The attributes of the element.
Source§fn from_attributes(
attributes: <html as TypedElement>::Attributes,
other_attributes: Vec<(String, Option<String>)>,
) -> html
fn from_attributes( attributes: <html as TypedElement>::Attributes, other_attributes: Vec<(String, Option<String>)>, ) -> html
Create an element from its attributes.
Auto Trait Implementations§
impl Freeze for html
impl RefUnwindSafe for html
impl Send for html
impl Sync for html
impl Unpin for html
impl UnwindSafe for html
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