windows::Win32::Media::DeviceManager

Trait IWMDMObjectInfo_Impl

pub trait IWMDMObjectInfo_Impl: IUnknownImpl {
    // Required methods
    fn GetPlayLength(&self) -> Result<u32>;
    fn SetPlayLength(&self, dwlength: u32) -> Result<()>;
    fn GetPlayOffset(&self) -> Result<u32>;
    fn SetPlayOffset(&self, dwoffset: u32) -> Result<()>;
    fn GetTotalLength(&self) -> Result<u32>;
    fn GetLastPlayPosition(&self) -> Result<u32>;
    fn GetLongestPlayPosition(&self) -> Result<u32>;
}

Required Methods§

fn GetPlayLength(&self) -> Result<u32>

fn SetPlayLength(&self, dwlength: u32) -> Result<()>

fn GetPlayOffset(&self) -> Result<u32>

fn SetPlayOffset(&self, dwoffset: u32) -> Result<()>

fn GetTotalLength(&self) -> Result<u32>

fn GetLastPlayPosition(&self) -> Result<u32>

fn GetLongestPlayPosition(&self) -> Result<u32>

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§