Enum linefeed::reader::Variable [] [src]

pub enum Variable<'a> {
    Boolean(bool),
    Integer(i32),
    String(Cow<'a, str>),
}

Represents a Reader variable of a given type

Variants

Boolean variable

Integer variable

String variable

Trait Implementations

impl<'a> Clone for Variable<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl<'a> Display for Variable<'a>
[src]

Formats the value using the given formatter. Read more