pub struct RectRaw<T = NoTag>where
T: Tag,{
pub x1: i32,
pub y1: i32,
pub x2: i32,
pub y2: i32,
pub tag: T,
}
Fields§
§x1: i32
§y1: i32
§x2: i32
§y2: i32
§tag: T
Trait Implementations§
impl<T> Copy for RectRaw<T>
impl<T> Eq for RectRaw<T>
impl<T> StructuralPartialEq for RectRaw<T>where
T: Tag,
Auto Trait Implementations§
impl<T> Freeze for RectRaw<T>where
T: Freeze,
impl<T> RefUnwindSafe for RectRaw<T>where
T: RefUnwindSafe,
impl<T> Send for RectRaw<T>where
T: Send,
impl<T> Sync for RectRaw<T>where
T: Sync,
impl<T> Unpin for RectRaw<T>where
T: Unpin,
impl<T> UnwindSafe for RectRaw<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