[][src]Struct firestore_grpc_cloudrun::ListDocumentsRequest

pub struct ListDocumentsRequest {
    pub parent: String,
    pub collection_id: String,
    pub page_size: i32,
    pub page_token: String,
    pub order_by: String,
    pub mask: Option<DocumentMask>,
    pub show_missing: bool,
    pub consistency_selector: Option<ConsistencySelector>,
}

The request for [Firestore.ListDocuments][google.firestore.v1.Firestore.ListDocuments].

Fields

parent: String

Required. The parent resource name. In the format: projects/{project_id}/databases/{database_id}/documents or projects/{project_id}/databases/{database_id}/documents/{document_path}. For example: projects/my-project/databases/my-database/documents or projects/my-project/databases/my-database/documents/chatrooms/my-chatroom

collection_id: String

Required. The collection ID, relative to parent, to list. For example: chatrooms or messages.

page_size: i32

The maximum number of documents to return.

page_token: String

The next_page_token value returned from a previous List request, if any.

order_by: String

The order to sort results by. For example: priority desc, name.

mask: Option<DocumentMask>

The fields to return. If not set, returns all fields.

If a document has a field that is not present in this mask, that field will not be returned in the response.

show_missing: bool

If the list should show missing documents. A missing document is a document that does not exist but has sub-documents. These documents will be returned with a key but will not have fields, [Document.create_time][google.firestore.v1.Document.create_time], or [Document.update_time][google.firestore.v1.Document.update_time] set.

Requests with show_missing may not specify where or order_by.

consistency_selector: Option<ConsistencySelector>

The consistency mode for this transaction. If not set, defaults to strong consistency.

Trait Implementations

impl Clone for ListDocumentsRequest[src]

impl Debug for ListDocumentsRequest[src]

impl Default for ListDocumentsRequest[src]

impl Message for ListDocumentsRequest[src]

impl PartialEq<ListDocumentsRequest> for ListDocumentsRequest[src]

impl StructuralPartialEq for ListDocumentsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListDocumentsRequest

impl Send for ListDocumentsRequest

impl Sync for ListDocumentsRequest

impl Unpin for ListDocumentsRequest

impl UnwindSafe for ListDocumentsRequest

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]