pub trait IWMWriterFileSink2_Impl: Sized + IWMWriterFileSink_Impl {
    // Required methods
    fn Start(&self, cnsstarttime: u64) -> Result<()>;
    fn Stop(&self, cnsstoptime: u64) -> Result<()>;
    fn IsStopped(&self) -> Result<BOOL>;
    fn GetFileDuration(&self) -> Result<u64>;
    fn GetFileSize(&self) -> Result<u64>;
    fn Close(&self) -> Result<()>;
    fn IsClosed(&self) -> Result<BOOL>;
}

Required Methods§

fn Start(&self, cnsstarttime: u64) -> Result<()>

fn Stop(&self, cnsstoptime: u64) -> Result<()>

fn IsStopped(&self) -> Result<BOOL>

fn GetFileDuration(&self) -> Result<u64>

fn GetFileSize(&self) -> Result<u64>

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

fn IsClosed(&self) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§