[][src]Enum flaggy::Value

pub enum Value {
    Single(String),
    Boolean(String),
    Repeated(Vec<String>),
}

A Value is the value associated with a given flag. The type of the value is different depending on the type of flag it is associated with.

Variants

Single(String)

A single string value (perhaps a string which the user of this library can then further interpret / parse as some other type).

Boolean(String)

A boolean value, from a flag defined as a boolean in its associated spec. It is represented here as a string, but Values internally enforces that all boolean strings must be successfully parseable.

Repeated(Vec<String>)

A flag with repeated values. These should be treated the same as one would a Single string value, except there are potentially zero or more of them.

Trait Implementations

impl Eq for Value[src]

impl PartialEq<Value> for Value[src]

impl Debug for Value[src]

Auto Trait Implementations

impl Send for Value

impl Sync for Value

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.