pub enum FlagValueType {
Flag,
String,
Int,
}Expand description
Type of value a flag accepts.
Variants§
Trait Implementations§
Source§impl Clone for FlagValueType
impl Clone for FlagValueType
Source§fn clone(&self) -> FlagValueType
fn clone(&self) -> FlagValueType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FlagValueType
Source§impl Debug for FlagValueType
impl Debug for FlagValueType
impl Eq for FlagValueType
Source§impl PartialEq for FlagValueType
impl PartialEq for FlagValueType
impl StructuralPartialEq for FlagValueType
Auto Trait Implementations§
impl Freeze for FlagValueType
impl RefUnwindSafe for FlagValueType
impl Send for FlagValueType
impl Sync for FlagValueType
impl Unpin for FlagValueType
impl UnsafeUnpin for FlagValueType
impl UnwindSafe for FlagValueType
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