Enum salak::SysArgsMode[][src]

pub enum SysArgsMode {
    Auto(SysArgsParam),
    Custom(Vec<(String, Property)>),
}

Command line arguments parser mode.

Variants

This is supported on crate features enable_clap or enable_pico only.

Use default pico-args parser. It has a OPTION named -P to set customized properties.

use salak::*;
let env = Salak::new()
   .with_default_args(auto_read_sys_args_param!())
   .build();

// Command line output:
// salak 0.0.0
// Daniel Yu <leptonyu@gmail.com>
// A rust configuration loader
//
// USAGE:
//     salak [OPTIONS]
//
// FLAGS:
//     -h, --help       Prints help information
//     -V, --version    Prints version information
//
// OPTIONS:
//     -P, --property <KEY=VALUE>...    Set properties

Customize command line arguments parser, and provide a Vec to PropertySource. If you can use any cli parser.

use salak::*;
let arg_props = vec![];  // replace `vec![]` with your cli parser process result.
let env = Salak::new()
   .with_custom_args(arg_props)
   .build();

Trait Implementations

impl Debug for SysArgsMode[src]

Auto Trait Implementations

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