Struct google_firestore1_beta1::api::Value[][src]

pub struct Value {
    pub array_value: Option<ArrayValue>,
    pub boolean_value: Option<bool>,
    pub bytes_value: Option<String>,
    pub double_value: Option<f64>,
    pub geo_point_value: Option<LatLng>,
    pub integer_value: Option<String>,
    pub map_value: Option<MapValue>,
    pub null_value: Option<String>,
    pub reference_value: Option<String>,
    pub string_value: Option<String>,
    pub timestamp_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

array_value: Option<ArrayValue>

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

boolean_value: Option<bool>

A boolean value.

bytes_value: Option<String>

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

double_value: Option<f64>

A double value.

geo_point_value: Option<LatLng>

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

integer_value: Option<String>

An integer value.

map_value: Option<MapValue>

A map value.

null_value: Option<String>

A null value.

reference_value: Option<String>

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

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.

timestamp_value: Option<String>

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

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 Part for Value[src]

impl Serialize for Value[src]

Auto Trait Implementations

impl RefUnwindSafe for Value[src]

impl Send for Value[src]

impl Sync for Value[src]

impl Unpin for Value[src]

impl UnwindSafe for Value[src]

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> 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.