pub struct Rect<T> {
pub x: T,
pub y: T,
pub w: T,
pub h: T,
}Expand description
Represents a generic rectangle with position and dimensions that implement Num trait, i.e. u16, f32, etc.
A rectangle is defined by its top-left corner coordinates (x, y) and its width and height.
Fields§
§x: TX-coordinate of the top-left corner
y: TY-coordinate of the top-left corner
w: TWidth of the rectangle
h: THeight of the rectangle
Trait Implementations§
impl<T: Copy> Copy for Rect<T>
Auto Trait Implementations§
impl<T> Freeze for Rect<T>where
T: Freeze,
impl<T> RefUnwindSafe for Rect<T>where
T: RefUnwindSafe,
impl<T> Send for Rect<T>where
T: Send,
impl<T> Sync for Rect<T>where
T: Sync,
impl<T> Unpin for Rect<T>where
T: Unpin,
impl<T> UnwindSafe for Rect<T>where
T: UnwindSafe,
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