Enum si_scale::prefix::constraint::Constraint
source · pub enum Constraint {
None,
UnitOnly,
UnitAndAbove,
UnitAndBelow,
Custom(Vec<Prefix>),
}Expand description
Specifies a constraint on the SI Prefix.
Variants§
None
Allows all prefixes from Yocto to Yotta.
Note: having a None variant proves ergonomic
in the context of this library.
UnitOnly
Only allows the Unit prefix, effectively preventing scaling.
UnitAndAbove
Only allows prefixes from Unit to Yotta.
UnitAndBelow
Only allows prefixes from Yocto to Unit.
Custom(Vec<Prefix>)
Only allows the specified prefixes (should be sorted in ascending exponent order).
Trait Implementations§
source§impl AsRef<Constraint> for Constraint
impl AsRef<Constraint> for Constraint
source§impl Clone for Constraint
impl Clone for Constraint
source§fn clone(&self) -> Constraint
fn clone(&self) -> Constraint
Returns a copy 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 Debug for Constraint
impl Debug for Constraint
source§impl PartialEq for Constraint
impl PartialEq for Constraint
source§fn eq(&self, other: &Constraint) -> bool
fn eq(&self, other: &Constraint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for Constraint
impl StructuralEq for Constraint
impl StructuralPartialEq for Constraint
Auto Trait Implementations§
impl RefUnwindSafe for Constraint
impl Send for Constraint
impl Sync for Constraint
impl Unpin for Constraint
impl UnwindSafe for Constraint
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