windows::Media::Core

Trait IMediaCue_Impl

pub trait IMediaCue_Impl: IUnknownImpl {
    // Required methods
    fn SetStartTime(&self, value: &TimeSpan) -> Result<()>;
    fn StartTime(&self) -> Result<TimeSpan>;
    fn SetDuration(&self, value: &TimeSpan) -> Result<()>;
    fn Duration(&self) -> Result<TimeSpan>;
    fn SetId(&self, value: &HSTRING) -> Result<()>;
    fn Id(&self) -> Result<HSTRING>;
}

Required Methods§

fn SetStartTime(&self, value: &TimeSpan) -> Result<()>

fn StartTime(&self) -> Result<TimeSpan>

fn SetDuration(&self, value: &TimeSpan) -> Result<()>

fn Duration(&self) -> Result<TimeSpan>

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

fn Id(&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§