[][src]Enum a_cli_tool::config7::Actions

pub enum Actions {
    Foo,
    Bar,
    Baz,
    FooBar,
    BarBaz,
    FooBarBaz,
}

The possible operations to perform on the data this tool manipulates.

See each option below for what it does and how it's referenced in config.

Variants

Foo

Perform a "foo" operation on the data:

foo
Bar

Perform a "bar" operation on the data:

bar
Baz

Perform a "baz" operation on the data:

baz
FooBar

Perform a "foo bar" operation on the data:

foo_bar
BarBaz

Perform a "foo baz" operation on the data:

foo_baz
FooBarBaz

Perform a "foo bar baz" operation on the data:

fbb

Trait Implementations

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

impl JsonSchema for Actions[src]

Auto Trait Implementations

impl RefUnwindSafe for Actions

impl Send for Actions

impl Sync for Actions

impl Unpin for Actions

impl UnwindSafe for Actions

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.