[][src]Enum meli::SubCommand

enum SubCommand {
    PrintDefaultTheme,
    PrintLoadedThemes,
    CreateConfig {
        path: Option<PathBuf>,
    },
    TestConfig {
        path: Option<PathBuf>,
    },
    Man(ManOpt),
    View {
        path: PathBuf,
    },
}

Variants

PrintDefaultTheme

print default theme in full to stdout and exit.

PrintLoadedThemes

print loaded themes in full to stdout and exit.

CreateConfig

create a sample configuration file with available configuration options. If PATH is not specified, meli will try to create it in $XDG_CONFIG_HOME/meli/config.toml

Fields of CreateConfig

path: Option<PathBuf>
TestConfig

test a configuration file for syntax issues or missing options.

Fields of TestConfig

path: Option<PathBuf>
Man(ManOpt)

print documentation page and exit (Piping to a pager is recommended.).

View

View mail from input file.

Fields of View

path: PathBuf

Trait Implementations

impl Debug for SubCommand[src]

impl StructOpt for SubCommand[src]

impl StructOptInternal for SubCommand[src]

Auto Trait Implementations

impl RefUnwindSafe for SubCommand

impl Send for SubCommand

impl Sync for SubCommand

impl Unpin for SubCommand

impl UnwindSafe for SubCommand

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> Instrument for T[src]

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

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>, 

impl<T> WithSubscriber for T[src]