pub trait VideoTrackMethods<D: DomTypes> {
// Required methods
fn Id(&self) -> DOMString;
fn Kind(&self) -> DOMString;
fn Label(&self) -> DOMString;
fn Language(&self) -> DOMString;
fn Selected(&self) -> bool;
fn SetSelected(&self, value: bool);
}Required Methods§
fn Id(&self) -> DOMString
fn Kind(&self) -> DOMString
fn Label(&self) -> DOMString
fn Language(&self) -> DOMString
fn Selected(&self) -> bool
fn SetSelected(&self, value: bool)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".