Trait IMFProtectedEnvironmentAccess_Impl
pub trait IMFProtectedEnvironmentAccess_Impl: IUnknownImpl {
// Required methods
fn Call(
&self,
inputlength: u32,
input: *const u8,
outputlength: u32,
output: *mut u8,
) -> Result<()>;
fn ReadGRL(
&self,
outputlength: *mut u32,
output: *mut *mut u8,
) -> Result<()>;
}
Required Methods§
fn Call( &self, inputlength: u32, input: *const u8, outputlength: u32, output: *mut u8, ) -> Result<()>
fn ReadGRL(&self, outputlength: *mut u32, output: *mut *mut u8) -> 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.