pub struct Rect<T> {
    pub x: T,
    pub y: T,
    pub w: T,
    pub h: T,
}Fields
x: Ty: Tw: Th: TTrait Implementations
impl<T: Copy> Copy for Rect<T>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more