Struct gapi_grpc::google::firestore::bundle::BundledDocumentMetadata[][src]

pub struct BundledDocumentMetadata {
    pub name: String,
    pub read_time: Option<Timestamp>,
    pub exists: bool,
    pub queries: Vec<String>,
}

Metadata describing a Firestore document saved in the bundle.

Fields

name: String

The document key of a bundled document.

read_time: Option<Timestamp>

The snapshot version of the document data bundled.

exists: bool

Whether the document exists.

queries: Vec<String>

The names of the queries in this bundle that this document matches to.

Trait Implementations

impl Clone for BundledDocumentMetadata[src]

impl Debug for BundledDocumentMetadata[src]

impl Default for BundledDocumentMetadata[src]

impl Message for BundledDocumentMetadata[src]

impl PartialEq<BundledDocumentMetadata> for BundledDocumentMetadata[src]

impl StructuralPartialEq for BundledDocumentMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for BundledDocumentMetadata

impl Send for BundledDocumentMetadata

impl Sync for BundledDocumentMetadata

impl Unpin for BundledDocumentMetadata

impl UnwindSafe for BundledDocumentMetadata

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]