pub trait IAVIStreaming_Impl: Sized {
    // Required methods
    fn Begin(&self, lstart: i32, lend: i32, lrate: i32) -> Result<()>;
    fn End(&self) -> Result<()>;
}

Required Methods§

fn Begin(&self, lstart: i32, lend: i32, lrate: i32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§