[][src]Struct winapi::shared::dxgi1_3::IDXGIOutput2

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

Fields

lpVtbl: *const IDXGIOutput2Vtbl

Implementations

impl IDXGIOutput2[src]

pub unsafe fn SupportsOverlays(&self) -> BOOL[src]

Methods from Deref<Target = IDXGIOutput1>

pub unsafe fn GetDisplayModeList1(
    &self,
    EnumFormat: DXGI_FORMAT,
    Flags: UINT,
    pNumModes: *mut UINT,
    pDesc: *mut DXGI_MODE_DESC1
) -> HRESULT
[src]

pub unsafe fn FindClosestMatchingMode1(
    &self,
    pModeToMatch: *const DXGI_MODE_DESC1,
    pClosestMatch: *mut DXGI_MODE_DESC1,
    pConcernedDevice: *mut IUnknown
) -> HRESULT
[src]

pub unsafe fn GetDisplaySurfaceData1(
    &self,
    pDestination: *mut IDXGIResource
) -> HRESULT
[src]

pub unsafe fn DuplicateOutput(
    &self,
    pDevice: *mut IUnknown,
    ppOutputDuplication: *mut *mut IDXGIOutputDuplication
) -> HRESULT
[src]

Trait Implementations

impl Deref for IDXGIOutput2[src]

type Target = IDXGIOutput1

The resulting type after dereferencing.

impl Interface for IDXGIOutput2[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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> 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.