Trait IStreamBufferRecordControl_Impl
pub trait IStreamBufferRecordControl_Impl: IUnknownImpl {
// Required methods
fn Start(&self, prtstart: *mut i64) -> Result<()>;
fn Stop(&self, rtstop: i64) -> Result<()>;
fn GetRecordingStatus(
&self,
phresult: *mut HRESULT,
pbstarted: *mut BOOL,
pbstopped: *mut BOOL,
) -> Result<()>;
}
Required Methods§
fn Start(&self, prtstart: *mut i64) -> Result<()>
fn Stop(&self, rtstop: i64) -> Result<()>
fn GetRecordingStatus( &self, phresult: *mut HRESULT, pbstarted: *mut BOOL, pbstopped: *mut BOOL, ) -> 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.