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
Integer
Float
Boolean
Datetime
Array
Table

Methods

impl<'a> EntryRef<'a>

fn is_child(self) -> bool

Trait Implementations

Derived Implementations

impl<'a> Copy for EntryRef<'a>

impl<'a> Clone for EntryRef<'a>

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

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