Trait IAttributeGet_Impl
pub trait IAttributeGet_Impl: IUnknownImpl {
// Required methods
fn GetCount(&self) -> Result<i32>;
fn GetAttribIndexed(
&self,
lindex: i32,
pguidattribute: *mut GUID,
pbattribute: *mut u8,
pdwattributelength: *mut u32,
) -> Result<()>;
fn GetAttrib(
&self,
guidattribute: &GUID,
pbattribute: *mut u8,
pdwattributelength: *mut u32,
) -> Result<()>;
}
Required Methods§
fn GetCount(&self) -> Result<i32>
fn GetAttribIndexed( &self, lindex: i32, pguidattribute: *mut GUID, pbattribute: *mut u8, pdwattributelength: *mut u32, ) -> Result<()>
fn GetAttrib( &self, guidattribute: &GUID, pbattribute: *mut u8, pdwattributelength: *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.