[][src]Enum oac_parser::spec::Pattern

pub enum Pattern<'a> {
    Command {
        command: Reference<'a, Command>,
        common: PatternCommon,
    },
    Argument {
        argument: Reference<'a, Argument>,
        common: PatternCommon,
    },
    Option {
        option: Reference<'a, Option>,
        argument: Option<Box<Pattern<'a>>>,
        common: PatternCommon,
    },
    Group {
        exclusive: bool,
        patterns: Vec<Pattern<'a>>,
        common: PatternCommon,
    },
}

A Pattern is a "place" in the completion DAG where a component can appear.

Variants

Command

Fields of Command

command: Reference<'a, Command>common: PatternCommon
Argument

Fields of Argument

argument: Reference<'a, Argument>common: PatternCommon
Option

Fields of Option

option: Reference<'a, Option>argument: Option<Box<Pattern<'a>>>

Pattern that could be used to parse the argument for the option.

common: PatternCommon
Group

A recursive structure, representing a parsing DAG.

Fields of Group

exclusive: bool

If true, then all the group members are mutually exclusive.

If false, then all the group members are required (except for members explicitly marked as optional).

patterns: Vec<Pattern<'a>>

Patterns that this group contains.

common: PatternCommon

Trait Implementations

impl<'a> Debug for Pattern<'a>[src]

impl<'de, 'a> Deserialize<'de> for Pattern<'a>[src]

impl<'a> Serialize for Pattern<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Pattern<'a>

impl<'a> Send for Pattern<'a>

impl<'a> Sync for Pattern<'a>

impl<'a> Unpin for Pattern<'a>

impl<'a> UnwindSafe for Pattern<'a>

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.