pub struct DynDim(pub i8, pub i8, pub i8, pub i8, pub i8, pub i8, pub i8);Expand description
Dynamic (runtime) Dimension
Tuple Fields§
§0: i8§1: i8§2: i8§3: i8§4: i8§5: i8§6: i8Implementations§
Trait Implementations§
Source§impl<D> DivAssign<D> for DynDimwhere
D: Dimension,
impl<D> DivAssign<D> for DynDimwhere
D: Dimension,
Source§fn div_assign(&mut self, rhs: D)
fn div_assign(&mut self, rhs: D)
Performs the
/= operation. Read moreSource§impl<D> MulAssign<D> for DynDimwhere
D: Dimension,
impl<D> MulAssign<D> for DynDimwhere
D: Dimension,
Source§fn mul_assign(&mut self, rhs: D)
fn mul_assign(&mut self, rhs: D)
Performs the
*= operation. Read moreimpl Copy for DynDim
Auto Trait Implementations§
impl Freeze for DynDim
impl RefUnwindSafe for DynDim
impl Send for DynDim
impl Sync for DynDim
impl Unpin for DynDim
impl UnwindSafe for DynDim
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