Enum toml_document::EntryRef [] [src]

pub enum EntryRef<'a> {
    String(&'a StringValue),
    Integer(&'a IntegerValue),
    Float(&'a FloatValue),
    Boolean(&'a BoolValue),
    Datetime(&'a DatetimeValue),
    Array(ArrayEntry<'a>),
    Table(TableEntry<'a>),
}

Variants

Methods

impl<'a> EntryRef<'a>
[src]

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Copy for EntryRef<'a>
[src]