[][src]Struct google_firestore1_beta1::Value

pub struct Value {
    pub bytes_value: Option<String>,
    pub timestamp_value: Option<String>,
    pub geo_point_value: Option<LatLng>,
    pub reference_value: Option<String>,
    pub double_value: Option<f64>,
    pub map_value: Option<MapValue>,
    pub string_value: Option<String>,
    pub boolean_value: Option<bool>,
    pub array_value: Option<ArrayValue>,
    pub integer_value: Option<String>,
    pub null_value: Option<String>,
}

A message that can hold any of the supported value types.

This type is not used in any activity, and only used as part of another schema.

Fields

bytes_value: Option<String>

A bytes value.

Must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes are considered by queries.

timestamp_value: Option<String>

A timestamp value.

Precise only to microseconds. When stored, any additional precision is rounded down.

geo_point_value: Option<LatLng>

A geo point value representing a point on the surface of Earth.

reference_value: Option<String>

A reference to a document. For example: projects/{project_id}/databases/{database_id}/documents/{document_path}.

double_value: Option<f64>

A double value.

map_value: Option<MapValue>

A map value.

string_value: Option<String>

A string value.

The string, represented as UTF-8, must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes of the UTF-8 representation are considered by queries.

boolean_value: Option<bool>

A boolean value.

array_value: Option<ArrayValue>

An array value.

Cannot directly contain another array value, though can contain an map which contains another array.

integer_value: Option<String>

An integer value.

null_value: Option<String>

A null value.

Trait Implementations

impl Part for Value[src]

impl Default for Value[src]

impl Clone for Value[src]

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

Performs copy-assignment from source. Read more

impl Debug for Value[src]

impl Serialize for Value[src]

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

Auto Trait Implementations

impl Send for Value

impl Unpin for Value

impl Sync for Value

impl UnwindSafe for Value

impl RefUnwindSafe for Value

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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