#[repr(C)]pub struct SCN_INVALIDATE_RECT {
pub code: UINT,
pub hwnd: HWINDOW,
pub invalid_rect: RECT,
}
Expand description
This notification is sent when a specific window area needs to be redrawn.
Fields§
§code: UINT
SC_INVALIDATE_RECT
here.
hwnd: HWINDOW
HWINDOW
of the window this callback was attached to.
invalid_rect: RECT
Coordinates of the invalidated area.
Auto Trait Implementations§
impl Freeze for SCN_INVALIDATE_RECT
impl RefUnwindSafe for SCN_INVALIDATE_RECT
impl !Send for SCN_INVALIDATE_RECT
impl !Sync for SCN_INVALIDATE_RECT
impl Unpin for SCN_INVALIDATE_RECT
impl UnwindSafe for SCN_INVALIDATE_RECT
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more