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