pub struct Rect<T> {
    pub x: T,
    pub y: T,
    pub w: T,
    pub h: T,
}Fields§
§x: T§y: T§w: T§h: TTrait Implementations§
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