Trait ITokenCollection_Impl
pub trait ITokenCollection_Impl: IUnknownImpl {
// Required methods
fn NumberOfTokens(&self, pcount: *const u32) -> Result<()>;
fn GetToken(
&self,
i: u32,
pbegin: *mut u32,
plength: *mut u32,
ppsz: *mut PWSTR,
) -> Result<()>;
}
Required Methods§
fn NumberOfTokens(&self, pcount: *const u32) -> Result<()>
fn GetToken( &self, i: u32, pbegin: *mut u32, plength: *mut u32, ppsz: *mut PWSTR, ) -> 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.