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

String(&'a StringValue)Integer(&'a IntegerValue)Float(&'a FloatValue)Boolean(&'a BoolValue)Datetime(&'a DatetimeValue)Array(ArrayEntry<'a>)Table(TableEntry<'a>)

Methods

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

fn is_child(self) -> bool

Trait Implementations

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

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

fn clone(&self) -> EntryRef<'a>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more