pub trait IMediaCue_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§