pub struct track {
pub attributes: TrackAttributes,
pub data_attributes: Vec<(String, Option<String>), Global>,
pub aria_attributes: Vec<(String, Option<String>), Global>,
}
Fields§
§attributes: TrackAttributes
§data_attributes: Vec<(String, Option<String>), Global>
§aria_attributes: Vec<(String, Option<String>), Global>
Trait Implementations§
source§impl TypedElement for track
impl TypedElement for track
§type Attributes = TrackAttributes
type Attributes = TrackAttributes
The attributes of the element.
source§fn from_attributes(
attributes: <track as TypedElement>::Attributes,
data_attributes: Vec<(String, Option<String>), Global>,
aria_attributes: Vec<(String, Option<String>), Global>
) -> track
fn from_attributes( attributes: <track as TypedElement>::Attributes, data_attributes: Vec<(String, Option<String>), Global>, aria_attributes: Vec<(String, Option<String>), Global> ) -> track
Create an element from its attributes.
Auto Trait Implementations§
impl RefUnwindSafe for track
impl Send for track
impl Sync for track
impl Unpin for track
impl UnwindSafe for track
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