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