Trait ID3D11CryptoSession_Impl
pub trait ID3D11CryptoSession_Impl: ID3D11DeviceChild_Impl {
// Required methods
fn GetCryptoType(&self, pcryptotype: *mut GUID);
fn GetDecoderProfile(&self, pdecoderprofile: *mut GUID);
fn GetCertificateSize(&self) -> Result<u32>;
fn GetCertificate(
&self,
certificatesize: u32,
pcertificate: *mut u8,
) -> Result<()>;
fn GetCryptoSessionHandle(&self, pcryptosessionhandle: *mut HANDLE);
}
Required Methods§
fn GetCryptoType(&self, pcryptotype: *mut GUID)
fn GetDecoderProfile(&self, pdecoderprofile: *mut GUID)
fn GetCertificateSize(&self) -> Result<u32>
fn GetCertificate( &self, certificatesize: u32, pcertificate: *mut u8, ) -> Result<()>
fn GetCryptoSessionHandle(&self, pcryptosessionhandle: *mut HANDLE)
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.