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