Trait IMFSecureChannel_Impl
pub trait IMFSecureChannel_Impl: IUnknownImpl {
// Required methods
fn GetCertificate(
&self,
ppcert: *mut *mut u8,
pcbcert: *mut u32,
) -> Result<()>;
fn SetupSession(
&self,
pbencryptedsessionkey: *const u8,
cbsessionkey: u32,
) -> Result<()>;
}
Required Methods§
fn GetCertificate(&self, ppcert: *mut *mut u8, pcbcert: *mut u32) -> Result<()>
fn SetupSession( &self, pbencryptedsessionkey: *const u8, cbsessionkey: 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.