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