pub enum ArgType {
Boolean,
BooleanArray(usize),
Integer,
IntegerArray(usize),
UInteger,
UIntegerArray(usize),
Float,
FloatArray(usize),
String,
StringArray(usize),
}
Expand description
Enumerates all data types that are handled by ArgSpec::parse()
.
Variants§
Boolean
BooleanArray(usize)
Integer
IntegerArray(usize)
UInteger
UIntegerArray(usize)
Float
FloatArray(usize)
String
StringArray(usize)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArgType
impl RefUnwindSafe for ArgType
impl Send for ArgType
impl Sync for ArgType
impl Unpin for ArgType
impl UnwindSafe for ArgType
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