windows::Media::Core

Trait IMediaTrack_Impl

pub trait IMediaTrack_Impl: IUnknownImpl {
    // Required methods
    fn Id(&self) -> Result<HSTRING>;
    fn Language(&self) -> Result<HSTRING>;
    fn TrackKind(&self) -> Result<MediaTrackKind>;
    fn SetLabel(&self, value: &HSTRING) -> Result<()>;
    fn Label(&self) -> Result<HSTRING>;
}

Required Methods§

fn Id(&self) -> Result<HSTRING>

fn Language(&self) -> Result<HSTRING>

fn TrackKind(&self) -> Result<MediaTrackKind>

fn SetLabel(&self, value: &HSTRING) -> Result<()>

fn Label(&self) -> Result<HSTRING>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§