pub enum ArgType {
Value,
Choices(Choices),
Group(ArgGroup),
}Expand description
All argument type supporting a formatting Either a leaf or subtree’s holder
Variants§
Value
default type holds no additional value
Choices(Choices)
enumeration argument type
Group(ArgGroup)
struct argument type
Trait Implementations§
impl StructuralPartialEq for ArgType
Auto Trait Implementations§
impl Freeze for ArgType
impl RefUnwindSafe for ArgType
impl Send for ArgType
impl Sync for ArgType
impl Unpin for ArgType
impl UnsafeUnpin 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