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 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 Debug for Constraint
impl Debug for Constraint
Source§impl PartialEq for Constraint
impl PartialEq for Constraint
impl Eq for Constraint
impl StructuralPartialEq for Constraint
Auto Trait Implementations§
impl Freeze for Constraint
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