pub struct WebVTTNodeObject {
pub applicable_classes: Vec<String>,
pub applicable_language: String,
pub kind: WebVTTNodeObjectKind,
children: RefCell<Vec<Rc<WebVTTNodeObject>>>,
parent: Weak<WebVTTNodeObject>,
index: usize,
}Expand description
Fields§
§applicable_classes: Vec<String>§applicable_language: String§kind: WebVTTNodeObjectKind§children: RefCell<Vec<Rc<WebVTTNodeObject>>>§parent: Weak<WebVTTNodeObject>§index: usizeImplementations§
Trait Implementations§
Source§impl Debug for WebVTTNodeObject
impl Debug for WebVTTNodeObject
Source§impl Default for WebVTTNodeObject
impl Default for WebVTTNodeObject
Source§fn default() -> WebVTTNodeObject
fn default() -> WebVTTNodeObject
Returns the “default value” for a type. Read more
Source§impl PartialEq for WebVTTNodeObject
impl PartialEq for WebVTTNodeObject
Auto Trait Implementations§
impl !Freeze for WebVTTNodeObject
impl !RefUnwindSafe for WebVTTNodeObject
impl !Send for WebVTTNodeObject
impl !Sync for WebVTTNodeObject
impl Unpin for WebVTTNodeObject
impl UnsafeUnpin for WebVTTNodeObject
impl !UnwindSafe for WebVTTNodeObject
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