pub struct SmallRect {
pub left: i16,
pub top: i16,
pub right: i16,
pub bottom: i16,
}Expand description
Defines the coordinates of the upper left and lower right corners of a rectangle.
This corresponds to SMALL_RECT.
Fields§
§left: i16§top: i16§right: i16§bottom: i16Auto Trait Implementations§
impl Freeze for SmallRect
impl RefUnwindSafe for SmallRect
impl Send for SmallRect
impl Sync for SmallRect
impl Unpin for SmallRect
impl UnwindSafe for SmallRect
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