pub enum MulDivOp {
Mul,
Div,
}Expand description
Multiply or divide operator used in dimension/unit expressions.
Variants§
Trait Implementations§
impl Copy for MulDivOp
impl Eq for MulDivOp
Source§impl FormatEquivalent for MulDivOp
impl FormatEquivalent for MulDivOp
Source§fn format_equivalent(&self, other: &Self) -> bool
fn format_equivalent(&self, other: &Self) -> bool
Returns
true if self and other are equivalent up to formatting.impl StructuralPartialEq for MulDivOp
Auto Trait Implementations§
impl Freeze for MulDivOp
impl RefUnwindSafe for MulDivOp
impl Send for MulDivOp
impl Sync for MulDivOp
impl Unpin for MulDivOp
impl UnsafeUnpin for MulDivOp
impl UnwindSafe for MulDivOp
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.