pub trait IMFClockConsumer_Impl: Sized {
    // Required methods
    fn SetPresentationClock(
        &self,
        ppresentationclock: Option<&IMFPresentationClock>
    ) -> Result<()>;
    fn GetPresentationClock(&self) -> Result<IMFPresentationClock>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§