Trait IWMWriterSink_Impl
pub trait IWMWriterSink_Impl: IUnknownImpl {
// Required methods
fn OnHeader(&self, pheader: Ref<'_, INSSBuffer>) -> Result<()>;
fn IsRealTime(&self) -> Result<BOOL>;
fn AllocateDataUnit(&self, cbdataunit: u32) -> Result<INSSBuffer>;
fn OnDataUnit(&self, pdataunit: Ref<'_, INSSBuffer>) -> Result<()>;
fn OnEndWriting(&self) -> Result<()>;
}
Required Methods§
fn OnHeader(&self, pheader: Ref<'_, INSSBuffer>) -> Result<()>
fn IsRealTime(&self) -> Result<BOOL>
fn AllocateDataUnit(&self, cbdataunit: u32) -> Result<INSSBuffer>
fn OnDataUnit(&self, pdataunit: Ref<'_, INSSBuffer>) -> Result<()>
fn OnEndWriting(&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.