Trait IMediaBuffer_Impl
pub trait IMediaBuffer_Impl: IUnknownImpl {
// Required methods
fn SetLength(&self, cblength: u32) -> Result<()>;
fn GetMaxLength(&self) -> Result<u32>;
fn GetBufferAndLength(
&self,
ppbuffer: *mut *mut u8,
pcblength: *mut u32,
) -> Result<()>;
}
Required Methods§
fn SetLength(&self, cblength: u32) -> Result<()>
fn GetMaxLength(&self) -> Result<u32>
fn GetBufferAndLength( &self, ppbuffer: *mut *mut u8, pcblength: *mut u32, ) -> 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.