[][src]Struct fakedate::options::Config

pub struct Config {
    pub year: Option<i32>,
    pub newline: bool,
    pub week_end: bool,
}

Configuration struct, all program behavior is defined in those fields.

Fields

year: Option<i32>

Year to use.

newline: bool

Print a newline "\n" char at the end.

week_end: bool

Force the date to be last week-end.

Implementations

impl Config[src]

pub fn parse() -> Config[src]

Parses the command line arguments.

Trait Implementations

impl Default for Config[src]

pub fn default() -> Self[src]

Return a default config.

use fakedate::options;

let c = options::Config::default();
assert!(c.newline);

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