[][src]Struct up_rs::args::Args

pub struct Args {
    pub log_level: String,
    // some fields omitted
}

Up is a tool to help you manage your developer machine. When run by itself (up) it does two things. It links configuration files into the right locations, and it runs scripts to make sure the tools you need are installed and up to date.

The up link command symlinks your dotfiles into your home directory.

The up date command provides an easy way to specify what you want on your system, and how to keep it up to date. It is designed to work with and complement existing package managers rather than replace them.

Fields

log_level: String

Set the logging level explicitly (options: Off, Error, Warn, Info, Debug, Trace).

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