pub trait MediaDeviceInfoMethods<D: DomTypes> {
// Required methods
fn DeviceId(&self) -> DOMString;
fn Kind(&self) -> MediaDeviceKind;
fn Label(&self) -> DOMString;
fn GroupId(&self) -> DOMString;
}Required Methods§
fn DeviceId(&self) -> DOMString
fn Kind(&self) -> MediaDeviceKind
fn Label(&self) -> DOMString
fn GroupId(&self) -> DOMString
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".