pub struct Box3<T>where
T: Copy,{
pub min: [T; 3],
pub max: [T; 3],
}Fields§
§min: [T; 3]§max: [T; 3]Trait Implementations§
impl<T> Copy for Box3<T>
impl<T> StructuralPartialEq for Box3<T>where
T: Copy,
Auto Trait Implementations§
impl<T> Freeze for Box3<T>where
T: Freeze,
impl<T> RefUnwindSafe for Box3<T>where
T: RefUnwindSafe,
impl<T> Send for Box3<T>where
T: Send,
impl<T> Sync for Box3<T>where
T: Sync,
impl<T> Unpin for Box3<T>where
T: Unpin,
impl<T> UnwindSafe for Box3<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