Struct google_firestore1_beta1::api::Value [−][src]
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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,