Trait IRDPSRAPITransportStreamBuffer_Impl
pub trait IRDPSRAPITransportStreamBuffer_Impl: IUnknownImpl {
// Required methods
fn Storage(&self) -> Result<*mut u8>;
fn StorageSize(&self) -> Result<i32>;
fn PayloadSize(&self) -> Result<i32>;
fn SetPayloadSize(&self, lval: i32) -> Result<()>;
fn PayloadOffset(&self) -> Result<i32>;
fn SetPayloadOffset(&self, lretval: i32) -> Result<()>;
fn Flags(&self) -> Result<i32>;
fn SetFlags(&self, lflags: i32) -> Result<()>;
fn Context(&self) -> Result<IUnknown>;
fn SetContext(&self, pcontext: Ref<'_, IUnknown>) -> Result<()>;
}
Required Methods§
fn Storage(&self) -> Result<*mut u8>
fn StorageSize(&self) -> Result<i32>
fn PayloadSize(&self) -> Result<i32>
fn SetPayloadSize(&self, lval: i32) -> Result<()>
fn PayloadOffset(&self) -> Result<i32>
fn SetPayloadOffset(&self, lretval: i32) -> Result<()>
fn Flags(&self) -> Result<i32>
fn SetFlags(&self, lflags: i32) -> Result<()>
fn Context(&self) -> Result<IUnknown>
fn SetContext(&self, pcontext: Ref<'_, IUnknown>) -> 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.