[][src]Struct firestore_grpc_cloudrun::ListCollectionIdsRequest

pub struct ListCollectionIdsRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
}

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

Fields

parent: String

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

page_size: i32

The maximum number of results to return.

page_token: String

A page token. Must be a value from [ListCollectionIdsResponse][google.firestore.v1.ListCollectionIdsResponse].

Trait Implementations

impl Clone for ListCollectionIdsRequest[src]

impl Debug for ListCollectionIdsRequest[src]

impl Default for ListCollectionIdsRequest[src]

impl Message for ListCollectionIdsRequest[src]

impl PartialEq<ListCollectionIdsRequest> for ListCollectionIdsRequest[src]

impl StructuralPartialEq for ListCollectionIdsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListCollectionIdsRequest

impl Send for ListCollectionIdsRequest

impl Sync for ListCollectionIdsRequest

impl Unpin for ListCollectionIdsRequest

impl UnwindSafe for ListCollectionIdsRequest

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]