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

pub struct NamedQuery {
    pub name: String,
    pub bundled_query: Option<BundledQuery>,
    pub read_time: Option<Timestamp>,
}

A Query associated with a name, created as part of the bundle file, and can be read by client SDKs once the bundle containing them is loaded.

Fields

name: String

Name of the query, such that client can use the name to load this query from bundle, and resume from when the query results are materialized into this bundle.

bundled_query: Option<BundledQuery>

The query saved in the bundle.

read_time: Option<Timestamp>

The read time of the query, when it is used to build the bundle. This is useful to resume the query from the bundle, once it is loaded by client SDKs.

Trait Implementations

impl Clone for NamedQuery[src]

impl Debug for NamedQuery[src]

impl Default for NamedQuery[src]

impl Message for NamedQuery[src]

impl PartialEq<NamedQuery> for NamedQuery[src]

impl StructuralPartialEq for NamedQuery[src]

Auto Trait Implementations

impl RefUnwindSafe for NamedQuery

impl Send for NamedQuery

impl Sync for NamedQuery

impl Unpin for NamedQuery

impl UnwindSafe for NamedQuery

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]