pub enum MuStretchShrink<M: MuDim> {
Mu(M),
Fil(i32),
Fill(i32),
Filll(i32),
}Expand description
A stretch/shrink component of a MuSkip.
Variants§
Implementations§
Source§impl<M: MuDim> MuStretchShrink<M>
impl<M: MuDim> MuStretchShrink<M>
Sourcepub fn from_float<ET: EngineTypes>(
engine: &EngineReferences<'_, ET>,
float: f64,
dim: &[u8],
) -> Self
pub fn from_float<ET: EngineTypes>( engine: &EngineReferences<'_, ET>, float: f64, dim: &[u8], ) -> Self
Returns a new MuStretchShrink from a floating-point number and a unit. The unit is assumed to be
fil, fill, filll or in M::UNITS.
Trait Implementations§
Source§impl<M: MuDim> Add for MuStretchShrink<M>
impl<M: MuDim> Add for MuStretchShrink<M>
Source§impl<M: Clone + MuDim> Clone for MuStretchShrink<M>
impl<M: Clone + MuDim> Clone for MuStretchShrink<M>
Source§fn clone(&self) -> MuStretchShrink<M>
fn clone(&self) -> MuStretchShrink<M>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<M: MuDim> Ord for MuStretchShrink<M>
impl<M: MuDim> Ord for MuStretchShrink<M>
Source§impl<M: MuDim> PartialOrd for MuStretchShrink<M>
impl<M: MuDim> PartialOrd for MuStretchShrink<M>
impl<M: Copy + MuDim> Copy for MuStretchShrink<M>
impl<M: Eq + MuDim> Eq for MuStretchShrink<M>
impl<M: MuDim> StructuralPartialEq for MuStretchShrink<M>
Auto Trait Implementations§
impl<M> Freeze for MuStretchShrink<M>where
M: Freeze,
impl<M> RefUnwindSafe for MuStretchShrink<M>where
M: RefUnwindSafe,
impl<M> Send for MuStretchShrink<M>where
M: Send,
impl<M> Sync for MuStretchShrink<M>where
M: Sync,
impl<M> Unpin for MuStretchShrink<M>where
M: Unpin,
impl<M> UnsafeUnpin for MuStretchShrink<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for MuStretchShrink<M>where
M: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more