[][src]Struct winapi::shared::dxgi::IDXGIAdapter

#[repr(C)]
pub struct IDXGIAdapter {
    pub lpVtbl: *const IDXGIAdapterVtbl,
}

Fields

lpVtbl: *const IDXGIAdapterVtbl

Methods

impl IDXGIAdapter[src]

pub unsafe fn EnumOutputs(
    &self,
    Output: UINT,
    ppOutput: *mut *mut IDXGIOutput
) -> HRESULT
[src]

pub unsafe fn GetDesc(&self, pDesc: *mut DXGI_ADAPTER_DESC) -> HRESULT[src]

pub unsafe fn CheckInterfaceSupport(
    &self,
    InterfaceName: REFGUID,
    pUMDVersion: *mut LARGE_INTEGER
) -> HRESULT
[src]

Methods from Deref<Target = IDXGIObject>

pub unsafe fn SetPrivateData(
    &self,
    Name: REFGUID,
    DataSize: UINT,
    pData: *const c_void
) -> HRESULT
[src]

pub unsafe fn SetPrivateDataInterface(
    &self,
    Name: REFGUID,
    pUnknown: *const IUnknown
) -> HRESULT
[src]

pub unsafe fn GetPrivateData(
    &self,
    Name: REFGUID,
    pDataSize: *mut UINT,
    pData: *mut c_void
) -> HRESULT
[src]

pub unsafe fn GetParent(
    &self,
    riid: REFIID,
    ppParent: *mut *mut c_void
) -> HRESULT
[src]

Trait Implementations

impl Interface for IDXGIAdapter[src]

impl Deref for IDXGIAdapter[src]

type Target = IDXGIObject

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]