[][src]Struct exonum_cli::command::maintenance::Maintenance

pub struct Maintenance {
    pub node_config: PathBuf,
    pub db_path: PathBuf,
    pub action: Action,
}

Perform different maintenance actions.

Fields

node_config: PathBuf

Path to a node configuration file.

db_path: PathBuf

Path to a database directory.

action: Action

Action to be performed.

Trait Implementations

impl ExonumCommand for Maintenance[src]

impl Debug for Maintenance[src]

impl StructOpt for Maintenance[src]

impl<'de> Deserialize<'de> for Maintenance[src]

impl Serialize for Maintenance[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

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