pub trait IMSVidStreamBufferRecordingControl_Impl: Sized + 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>

Object Safety§

This trait is not object safe.

Implementors§