Enum ion::Value [] [src]

pub enum Value {
    String(String),
    Integer(i64),
    Float(f64),
    Boolean(bool),
    Array(Row),
    Dictionary(Dictionary),
}

Variants

Methods

impl Value
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

convert to type F using the FromIon trait

[src]

parse to the resulting type, if the inner value is not a string, convert to string first

Trait Implementations

impl Display for Value
[src]

[src]

Formats the value using the given formatter. Read more

impl FromIon<Value> for String
[src]

[src]

impl FromIon<Value> for Option<String>
[src]

[src]

impl FromIon<Value> for isize
[src]

[src]

impl FromIon<Value> for i8
[src]

[src]

impl FromIon<Value> for i16
[src]

[src]

impl FromIon<Value> for i32
[src]

[src]

impl FromIon<Value> for i64
[src]

[src]

impl FromIon<Value> for usize
[src]

[src]

impl FromIon<Value> for u8
[src]

[src]

impl FromIon<Value> for u16
[src]

[src]

impl FromIon<Value> for u32
[src]

[src]

impl FromIon<Value> for u64
[src]

[src]

impl FromIon<Value> for bool
[src]

[src]

impl Debug for Value
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Value
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Clone for Value
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl FromStr for Value
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

impl<'a> From<&'a Value> for String
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Value

impl Sync for Value