[][src]Enum toml_spanned_value::spanned_value::ValueKind

pub enum ValueKind {
    String(String),
    Integer(i64),
    Float(f64),
    Boolean(bool),
    Datetime(Datetime),
    Array(Array),
    Table(Table),
}

Representation of a TOML value.

Variants

String(String)

Represents a TOML string

Integer(i64)

Represents a TOML integer

Float(f64)

Represents a TOML float

Boolean(bool)

Represents a TOML boolean

Datetime(Datetime)

Represents a TOML datetime

Array(Array)

Represents a TOML array

Table(Table)

Represents a TOML table

Methods

impl ValueKind[src]

pub fn get<I: Index>(&self, index: I) -> Option<&SpannedValue>[src]

Index into a TOML array or map. A string index can be used to access a value in a map, and a usize index can be used to access an element of an array.

Returns None if the type of self does not match the type of the index, for example if the index is a string and self is an array or a number. Also returns None if the given key does not exist in the map or the given index is not within the bounds of the array.

pub fn get_mut<I: Index>(&mut self, index: I) -> Option<&mut SpannedValue>[src]

Mutably index into a TOML array or map. A string index can be used to access a value in a map, and a usize index can be used to access an element of an array.

Returns None if the type of self does not match the type of the index, for example if the index is a string and self is an array or a number. Also returns None if the given key does not exist in the map or the given index is not within the bounds of the array.

pub fn as_integer(&self) -> Option<i64>[src]

Extracts the integer value if it is an integer.

pub fn is_integer(&self) -> bool[src]

Tests whether this value is an integer.

pub fn as_float(&self) -> Option<f64>[src]

Extracts the float value if it is a float.

pub fn is_float(&self) -> bool[src]

Tests whether this value is a float.

pub fn as_bool(&self) -> Option<bool>[src]

Extracts the boolean value if it is a boolean.

pub fn is_bool(&self) -> bool[src]

Tests whether this value is a boolean.

pub fn as_str(&self) -> Option<&str>[src]

Extracts the string of this value if it is a string.

pub fn is_str(&self) -> bool[src]

Tests if this value is a string.

pub fn as_datetime(&self) -> Option<&Datetime>[src]

Extracts the datetime value if it is a datetime.

Note that a parsed TOML value will only contain ISO 8601 dates. An example date is:

1979-05-27T07:32:00Z

pub fn is_datetime(&self) -> bool[src]

Tests whether this value is a datetime.

pub fn as_array(&self) -> Option<&Vec<SpannedValue>>[src]

Extracts the array value if it is an array.

pub fn as_array_mut(&mut self) -> Option<&mut Vec<SpannedValue>>[src]

Extracts the array value if it is an array.

pub fn is_array(&self) -> bool[src]

Tests whether this value is an array.

pub fn as_table(&self) -> Option<&Table>[src]

Extracts the table value if it is a table.

pub fn as_table_mut(&mut self) -> Option<&mut Table>[src]

Extracts the table value if it is a table.

pub fn is_table(&self) -> bool[src]

Tests whether this value is a table.

pub fn same_type(&self, other: &ValueKind) -> bool[src]

Tests whether this and another value have the same type.

pub fn type_str(&self) -> &'static str[src]

Returns a human-readable representation of the type of this value.

Trait Implementations

impl<'a> From<&'a str> for ValueKind[src]

impl<V: Into<SpannedValue>> From<Vec<V>> for ValueKind[src]

impl From<String> for ValueKind[src]

impl From<i64> for ValueKind[src]

impl From<i32> for ValueKind[src]

impl From<i8> for ValueKind[src]

impl From<u8> for ValueKind[src]

impl From<u32> for ValueKind[src]

impl From<f64> for ValueKind[src]

impl From<f32> for ValueKind[src]

impl From<bool> for ValueKind[src]

impl From<Datetime> for ValueKind[src]

impl From<Map<Spanned<String>, Spanned<ValueKind>>> for ValueKind[src]

impl Clone for ValueKind[src]

impl PartialEq<ValueKind> for ValueKind[src]

impl Display for ValueKind[src]

impl Debug for ValueKind[src]

impl FromStr for ValueKind[src]

type Err = Error

The associated error which can be returned from parsing.

impl<I> Index<I> for ValueKind where
    I: Index
[src]

type Output = SpannedValue

The returned type after indexing.

impl<I> IndexMut<I> for ValueKind where
    I: Index
[src]

impl StructuralPartialEq for ValueKind[src]

impl Serialize for ValueKind[src]

impl<'de> Deserialize<'de> for ValueKind[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]