windows::Win32::Media::DirectShow::Tv

Trait IStreamBufferRecComp_Impl

pub trait IStreamBufferRecComp_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(
        &self,
        psztargetfilename: &PCWSTR,
        pszsbrecprofileref: &PCWSTR,
    ) -> Result<()>;
    fn Append(&self, pszsbrecording: &PCWSTR) -> Result<()>;
    fn AppendEx(
        &self,
        pszsbrecording: &PCWSTR,
        rtstart: i64,
        rtstop: i64,
    ) -> Result<()>;
    fn GetCurrentLength(&self) -> Result<u32>;
    fn Close(&self) -> Result<()>;
    fn Cancel(&self) -> Result<()>;
}

Required Methods§

fn Initialize( &self, psztargetfilename: &PCWSTR, pszsbrecprofileref: &PCWSTR, ) -> Result<()>

fn Append(&self, pszsbrecording: &PCWSTR) -> Result<()>

fn AppendEx( &self, pszsbrecording: &PCWSTR, rtstart: i64, rtstop: i64, ) -> Result<()>

fn GetCurrentLength(&self) -> Result<u32>

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

fn Cancel(&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§