[][src]Struct rusoto_rds_data::Value

pub struct Value {
    pub array_values: Option<Vec<Value>>,
    pub big_int_value: Option<i64>,
    pub bit_value: Option<bool>,
    pub blob_value: Option<Bytes>,
    pub double_value: Option<f64>,
    pub int_value: Option<i64>,
    pub is_null: Option<bool>,
    pub real_value: Option<f32>,
    pub string_value: Option<String>,
    pub struct_value: Option<StructValue>,
}

Contains the value of a column.

 <important> <p>This data type is deprecated.</p> </important> 

Fields

array_values: Option<Vec<Value>>

An array of column values.

big_int_value: Option<i64>

A value for a column of big integer data type.

bit_value: Option<bool>

A value for a column of BIT data type.

blob_value: Option<Bytes>

A value for a column of BLOB data type.

double_value: Option<f64>

A value for a column of double data type.

int_value: Option<i64>

A value for a column of integer data type.

is_null: Option<bool>

A NULL value.

real_value: Option<f32>

A value for a column of real data type.

string_value: Option<String>

A value for a column of string data type.

struct_value: Option<StructValue>

A value for a column of STRUCT data type.

Trait Implementations

impl Clone for Value[src]

impl Debug for Value[src]

impl Default for Value[src]

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

impl PartialEq<Value> for Value[src]

impl StructuralPartialEq for Value[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.