pub enum ELUVCharacterSet {
FourBit,
ThreeBit,
TwoBit,
Full,
Twitter,
}
Variants§
Trait Implementations§
Source§impl ArgEnum for ELUVCharacterSet
impl ArgEnum for ELUVCharacterSet
Source§impl Clap for ELUVCharacterSet
impl Clap for ELUVCharacterSet
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§impl Debug for ELUVCharacterSet
impl Debug for ELUVCharacterSet
Source§impl FromArgMatches for ELUVCharacterSet
impl FromArgMatches for ELUVCharacterSet
Source§fn from_arg_matches(matches: &ArgMatches) -> Self
fn from_arg_matches(matches: &ArgMatches) -> Self
It’s common to have an “application context” struct (sometimes called
config) that represents all the normalized values after being processed by
the CLI. Read more
Source§impl IntoApp for ELUVCharacterSet
impl IntoApp for ELUVCharacterSet
Source§impl PartialEq for ELUVCharacterSet
impl PartialEq for ELUVCharacterSet
Source§impl Subcommand for ELUVCharacterSet
impl Subcommand for ELUVCharacterSet
Source§fn augment_subcommands<'b>(app: App<'b>) -> App<'b>
fn augment_subcommands<'b>(app: App<'b>) -> App<'b>
@TODO @release @docs
Source§fn from_subcommand(subcommand: Option<(&str, &ArgMatches)>) -> Option<Self>
fn from_subcommand(subcommand: Option<(&str, &ArgMatches)>) -> Option<Self>
@TODO @release @docs
impl StructuralPartialEq for ELUVCharacterSet
Auto Trait Implementations§
impl Freeze for ELUVCharacterSet
impl RefUnwindSafe for ELUVCharacterSet
impl Send for ELUVCharacterSet
impl Sync for ELUVCharacterSet
impl Unpin for ELUVCharacterSet
impl UnwindSafe for ELUVCharacterSet
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