pub trait IVideoFrameStep_Impl: Sized {
    // Required methods
    fn Step(&self, dwframes: u32, pstepobject: Option<&IUnknown>) -> Result<()>;
    fn CanStep(
        &self,
        bmultiple: i32,
        pstepobject: Option<&IUnknown>
    ) -> Result<()>;
    fn CancelStep(&self) -> Result<()>;
}

Required Methods§

fn Step(&self, dwframes: u32, pstepobject: Option<&IUnknown>) -> Result<()>

fn CanStep(&self, bmultiple: i32, pstepobject: Option<&IUnknown>) -> Result<()>

fn CancelStep(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§