[][src]Struct acme_redirect::args::Args

pub struct Args {
    pub verbose: u8,
    pub quiet: bool,
    pub config: String,
    pub config_dir: String,
    pub chall_dir: String,
    pub data_dir: String,
    pub acme_url: String,
    pub acme_email: Option<String>,
    pub subcommand: SubCommand,
}

Fields

verbose: u8

Verbose logging output (Can be set multiple times)

quiet: bool

Silent output (except errors)

config: Stringconfig_dir: Stringchall_dir: Stringdata_dir: Stringacme_url: Stringacme_email: Option<String>subcommand: SubCommand

Trait Implementations

impl Debug for Args[src]

impl StructOpt for Args[src]

impl StructOptInternal for Args[src]

Auto Trait Implementations

impl RefUnwindSafe for Args

impl Send for Args

impl Sync for Args

impl Unpin for Args

impl UnwindSafe for Args

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,