Struct ql2::Datum[][src]

pub struct Datum {
    pub type: Option<i32>,
    pub r_bool: Option<bool>,
    pub r_num: Option<f64>,
    pub r_str: Option<String>,
    pub r_array: Vec<Datum>,
    pub r_object: Vec<AssocPair>,
}

A Datum is a chunk of data that can be serialized to disk or returned to the user in a Response. Currently we only support JSON types, but we may support other types in the future (e.g., a date type or an integer type).

Fields

type: Option<i32>r_bool: Option<bool>r_num: Option<f64>r_str: Option<String>r_array: Vec<Datum>r_object: Vec<AssocPair>

Implementations

impl Datum[src]

pub fn type(&self) -> DatumType[src]

Returns the enum value of type, or the default if the field is unset or set to an invalid enum value.

pub fn set_type(&mut self, value: DatumType)[src]

Sets type to the provided enum value.

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

Returns the value of r_bool, or the default value if r_bool is unset.

pub fn r_num(&self) -> f64[src]

Returns the value of r_num, or the default value if r_num is unset.

pub fn r_str(&self) -> &str[src]

Returns the value of r_str, or the default value if r_str is unset.

Trait Implementations

impl Clone for Datum[src]

impl Debug for Datum[src]

impl Default for Datum[src]

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

impl Message for Datum[src]

impl PartialEq<Datum> for Datum[src]

impl Serialize for Datum[src]

impl StructuralPartialEq for Datum[src]

Auto Trait Implementations

impl RefUnwindSafe for Datum

impl Send for Datum

impl Sync for Datum

impl Unpin for Datum

impl UnwindSafe for Datum

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.