pub enum NumberType {
Show 13 variants
Real,
Integer,
RealPercent,
IntegerPercent,
RealDvw,
IntegerDvw,
RealDvh,
IntegerDvh,
RealVw,
IntegerVw,
RealVh,
IntegerVh,
Calc,
}
Expand description
Auto-generated discriminant enum variants
Variants§
Real
Integer
RealPercent
IntegerPercent
RealDvw
IntegerDvw
RealDvh
IntegerDvh
RealVw
IntegerVw
RealVh
IntegerVh
Calc
Trait Implementations§
Source§impl Clone for NumberType
impl Clone for NumberType
Source§fn clone(&self) -> NumberType
fn clone(&self) -> NumberType
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 NumberType
impl Debug for NumberType
Source§impl<'_enum> From<&'_enum Number> for NumberType
impl<'_enum> From<&'_enum Number> for NumberType
Source§fn from(val: &'_enum Number) -> NumberType
fn from(val: &'_enum Number) -> NumberType
Converts to this type from the input type.
Source§impl From<Number> for NumberType
impl From<Number> for NumberType
Source§fn from(val: Number) -> NumberType
fn from(val: Number) -> NumberType
Converts to this type from the input type.
Source§impl IntoEnumIterator for NumberType
impl IntoEnumIterator for NumberType
type Iterator = NumberTypeIter
fn iter() -> NumberTypeIter ⓘ
Source§impl PartialEq for NumberType
impl PartialEq for NumberType
impl Copy for NumberType
impl Eq for NumberType
impl StructuralPartialEq for NumberType
Auto Trait Implementations§
impl Freeze for NumberType
impl RefUnwindSafe for NumberType
impl Send for NumberType
impl Sync for NumberType
impl Unpin for NumberType
impl UnwindSafe for NumberType
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.