pub trait IMFClockStateSink_Impl: Sized {
    // Required methods
    fn OnClockStart(
        &self,
        hnssystemtime: i64,
        llclockstartoffset: i64
    ) -> Result<()>;
    fn OnClockStop(&self, hnssystemtime: i64) -> Result<()>;
    fn OnClockPause(&self, hnssystemtime: i64) -> Result<()>;
    fn OnClockRestart(&self, hnssystemtime: i64) -> Result<()>;
    fn OnClockSetRate(&self, hnssystemtime: i64, flrate: f32) -> Result<()>;
}

Required Methods§

fn OnClockStart( &self, hnssystemtime: i64, llclockstartoffset: i64 ) -> Result<()>

fn OnClockStop(&self, hnssystemtime: i64) -> Result<()>

fn OnClockPause(&self, hnssystemtime: i64) -> Result<()>

fn OnClockRestart(&self, hnssystemtime: i64) -> Result<()>

fn OnClockSetRate(&self, hnssystemtime: i64, flrate: f32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§