Trait IGenericDescriptor_Impl
pub trait IGenericDescriptor_Impl: IUnknownImpl {
// Required methods
fn Initialize(&self, pbdesc: *const u8, bcount: i32) -> Result<()>;
fn GetTag(&self) -> Result<u8>;
fn GetLength(&self) -> Result<u8>;
fn GetBody(&self) -> Result<*mut u8>;
}
Required Methods§
fn Initialize(&self, pbdesc: *const u8, bcount: i32) -> Result<()>
fn GetTag(&self) -> Result<u8>
fn GetLength(&self) -> Result<u8>
fn GetBody(&self) -> Result<*mut u8>
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.