windows::Win32::Graphics::Direct3D11

Trait ID3D11VideoDevice2_Impl

pub trait ID3D11VideoDevice2_Impl: ID3D11VideoDevice1_Impl {
    // Required methods
    fn CheckFeatureSupport(
        &self,
        feature: D3D11_FEATURE_VIDEO,
        pfeaturesupportdata: *mut c_void,
        featuresupportdatasize: u32,
    ) -> Result<()>;
    fn NegotiateCryptoSessionKeyExchangeMT(
        &self,
        pcryptosession: Ref<'_, ID3D11CryptoSession>,
        flags: D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS,
        datasize: u32,
        pdata: *mut c_void,
    ) -> Result<()>;
}

Required Methods§

fn CheckFeatureSupport( &self, feature: D3D11_FEATURE_VIDEO, pfeaturesupportdata: *mut c_void, featuresupportdatasize: u32, ) -> Result<()>

fn NegotiateCryptoSessionKeyExchangeMT( &self, pcryptosession: Ref<'_, ID3D11CryptoSession>, flags: D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS, datasize: u32, pdata: *mut c_void, ) -> 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.

Implementors§