[][src]Enum hyper_scripter::args::Subs

pub enum Subs {
    Other(Vec<String>),
    Help {
        args: Vec<String>,
    },
    LoadUtils,
    Edit {
        category: Option<ScriptType>,
        no_template: bool,
        tags: Option<TagControlFlow>,
        fast: bool,
        edit_query: EditQuery,
        content: Option<String>,
    },
    Alias {
        unset: bool,
        before: Option<String>,
        after: Vec<String>,
    },
    Run {
        script_query: ScriptQuery,
        args: Vec<String>,
    },
    Which {
        script_query: ScriptQuery,
    },
    Cat {
        script_query: ScriptQuery,
    },
    RM {
        queries: Vec<ListQuery>,
        purge: bool,
    },
    LS(List),
    CP {
        origin: ScriptQuery,
        new: String,
    },
    MV {
        category: Option<ScriptType>,
        tags: Option<TagControlFlow>,
        origin: ScriptQuery,
        new: Option<String>,
    },
    Tags {
        tag_filter: Option<FilterQuery>,
        obligation: bool,
    },
}

Variants

Other(Vec<String>)
Help

Fields of Help

args: Vec<String>
LoadUtils
Edit

Fields of Edit

category: Option<ScriptType>no_template: booltags: Option<TagControlFlow>fast: booledit_query: EditQuerycontent: Option<String>
Alias

Fields of Alias

unset: boolbefore: Option<String>after: Vec<String>
Run

Fields of Run

script_query: ScriptQueryargs: Vec<String>
Which

Fields of Which

script_query: ScriptQuery
Cat

Fields of Cat

script_query: ScriptQuery
RM

Fields of RM

queries: Vec<ListQuery>purge: bool
LS(List)
CP

Fields of CP

origin: ScriptQuerynew: String
MV

Fields of MV

category: Option<ScriptType>tags: Option<TagControlFlow>origin: ScriptQuerynew: Option<String>
Tags

Fields of Tags

tag_filter: Option<FilterQuery>obligation: bool

Trait Implementations

impl Debug for Subs[src]

impl StructOpt for Subs[src]

impl StructOptInternal for Subs[src]

Auto Trait Implementations

impl !RefUnwindSafe for Subs

impl Send for Subs

impl Sync for Subs

impl Unpin for Subs

impl UnwindSafe for Subs

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> Same<T> for T

type Output = T

Should always be Self

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.