pub enum AllPosition {
Phone(PhonePosition),
SignedRange(SignedRangePosition),
UnsignedRange(UnsignedRangePosition),
Boolean(BooleanPosition),
Category(CategoryPosition),
Undefined(UndefinedPotision),
}
Expand description
Enum that represent all positions
Variants§
Phone(PhonePosition)
Phone fields
SignedRange(SignedRangePosition)
Signed integer fields
UnsignedRange(UnsignedRangePosition)
Unsigned integer fields
Boolean(BooleanPosition)
Boolean fields
Category(CategoryPosition)
Numerical categorical fields
Undefined(UndefinedPotision)
Undefined (always xx
) fields
Trait Implementations§
Source§impl Clone for AllPosition
impl Clone for AllPosition
Source§fn clone(&self) -> AllPosition
fn clone(&self) -> AllPosition
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 AllPosition
impl Debug for AllPosition
Source§impl PartialEq for AllPosition
impl PartialEq for AllPosition
impl Copy for AllPosition
impl Eq for AllPosition
impl StructuralPartialEq for AllPosition
Auto Trait Implementations§
impl Freeze for AllPosition
impl RefUnwindSafe for AllPosition
impl Send for AllPosition
impl Sync for AllPosition
impl Unpin for AllPosition
impl UnwindSafe for AllPosition
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