#[repr(C)]pub struct RECT {
pub left: LONG,
pub top: LONG,
pub right: LONG,
pub bottom: LONG,
}
Expand description
Defines the coordinates of the upper-left and lower-right corners of a rectangle.
Fields§
§left: LONG
§top: LONG
§right: LONG
§bottom: LONG
Implementations§
Trait Implementations§
impl Copy for RECT
impl StructuralPartialEq for RECT
Auto Trait Implementations§
impl Freeze for RECT
impl RefUnwindSafe for RECT
impl Send for RECT
impl Sync for RECT
impl Unpin for RECT
impl UnwindSafe for 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