Struct winapi_util::console::SmallRect
source · 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: i16
Auto 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