[][src]Struct firestore_grpc_cloudrun::structured_query::CollectionSelector

pub struct CollectionSelector {
    pub collection_id: String,
    pub all_descendants: bool,
}

A selection of a collection, such as messages as m1.

Fields

collection_id: String

The collection ID. When set, selects only collections with this ID.

all_descendants: bool

When false, selects only collections that are immediate children of the parent specified in the containing RunQueryRequest. When true, selects all descendant collections.

Trait Implementations

impl Clone for CollectionSelector[src]

impl Debug for CollectionSelector[src]

impl Default for CollectionSelector[src]

impl Message for CollectionSelector[src]

impl PartialEq<CollectionSelector> for CollectionSelector[src]

impl StructuralPartialEq for CollectionSelector[src]

Auto Trait Implementations

impl RefUnwindSafe for CollectionSelector

impl Send for CollectionSelector

impl Sync for CollectionSelector

impl Unpin for CollectionSelector

impl UnwindSafe for CollectionSelector

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, 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]