Trait windows::Win32::Graphics::Direct3D11::ID3D11Fence_Impl

pub trait ID3D11Fence_Impl: Sized + ID3D11DeviceChild_Impl {
    // Required methods
    fn CreateSharedHandle(
        &self,
        pattributes: *const SECURITY_ATTRIBUTES,
        dwaccess: u32,
        lpname: &PCWSTR,
    ) -> Result<HANDLE>;
    fn GetCompletedValue(&self) -> u64;
    fn SetEventOnCompletion(&self, value: u64, hevent: HANDLE) -> Result<()>;
}

Required Methods§

fn CreateSharedHandle( &self, pattributes: *const SECURITY_ATTRIBUTES, dwaccess: u32, lpname: &PCWSTR, ) -> Result<HANDLE>

fn GetCompletedValue(&self) -> u64

fn SetEventOnCompletion(&self, value: u64, hevent: HANDLE) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§