[][src]Struct winapi::um::winuser::PAINTSTRUCT

#[repr(C)]pub struct PAINTSTRUCT {
    pub hdc: HDC,
    pub fErase: BOOL,
    pub rcPaint: RECT,
    pub fRestore: BOOL,
    pub fIncUpdate: BOOL,
    pub rgbReserved: [BYTE; 32],
}

Fields

hdc: HDCfErase: BOOLrcPaint: RECTfRestore: BOOLfIncUpdate: BOOLrgbReserved: [BYTE; 32]

Trait Implementations

impl Clone for PAINTSTRUCT[src]

impl Copy for PAINTSTRUCT[src]

impl Default for PAINTSTRUCT[src]

Auto Trait Implementations

impl !Send for PAINTSTRUCT

impl !Sync for PAINTSTRUCT

impl Unpin for PAINTSTRUCT

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.