pub enum ArgcValue {
Show 16 variants
Single(String, String),
SingleFn(String, String),
Multiple(String, Vec<String>),
Map(String, IndexMap<String, Vec<String>>),
PositionalSingle(String, String),
PositionalSingleFn(String, String),
PositionalMultiple(String, Vec<String>),
ExtraPositionalMultiple(Vec<String>),
Env(String, String),
EnvFn(String, String),
Hook((bool, bool)),
Dotenv(String),
RequireTools(Vec<String>),
CommandFn(String),
ParamFn(String),
Error((String, i32)),
}Variants§
Single(String, String)
SingleFn(String, String)
Multiple(String, Vec<String>)
Map(String, IndexMap<String, Vec<String>>)
PositionalSingle(String, String)
PositionalSingleFn(String, String)
PositionalMultiple(String, Vec<String>)
ExtraPositionalMultiple(Vec<String>)
Env(String, String)
EnvFn(String, String)
Hook((bool, bool))
Dotenv(String)
RequireTools(Vec<String>)
CommandFn(String)
ParamFn(String)
Error((String, i32))
Implementations§
Trait Implementations§
impl Eq for ArgcValue
impl StructuralPartialEq for ArgcValue
Auto Trait Implementations§
impl Freeze for ArgcValue
impl RefUnwindSafe for ArgcValue
impl Send for ArgcValue
impl Sync for ArgcValue
impl Unpin for ArgcValue
impl UnwindSafe for ArgcValue
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<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.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more