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

Trait IMSVidStreamBufferRecordingControl_Impl

pub trait IMSVidStreamBufferRecordingControl_Impl: IDispatch_Impl {
    // Required methods
    fn StartTime(&self) -> Result<i32>;
    fn SetStartTime(&self, rtstart: i32) -> Result<()>;
    fn StopTime(&self) -> Result<i32>;
    fn SetStopTime(&self, rtstop: i32) -> Result<()>;
    fn RecordingStopped(&self) -> Result<VARIANT_BOOL>;
    fn RecordingStarted(&self) -> Result<VARIANT_BOOL>;
    fn RecordingType(&self) -> Result<RecordingType>;
    fn RecordingAttribute(&self) -> Result<IUnknown>;
}

Required Methods§

fn StartTime(&self) -> Result<i32>

fn SetStartTime(&self, rtstart: i32) -> Result<()>

fn StopTime(&self) -> Result<i32>

fn SetStopTime(&self, rtstop: i32) -> Result<()>

fn RecordingStopped(&self) -> Result<VARIANT_BOOL>

fn RecordingStarted(&self) -> Result<VARIANT_BOOL>

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

fn RecordingAttribute(&self) -> Result<IUnknown>

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§