windows::Win32::Media::DirectShow

Trait IVideoFrameStep_Impl

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

Required Methods§

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

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

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

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§