[][src]Struct google_identitytoolkit3::IdentitytoolkitRelyingpartyDownloadAccountRequest

pub struct IdentitytoolkitRelyingpartyDownloadAccountRequest {
    pub next_page_token: Option<String>,
    pub target_project_id: Option<String>,
    pub delegated_project_number: Option<String>,
    pub max_results: Option<u32>,
}

Request to download user account in batch.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

next_page_token: Option<String>

The token for the next page. This should be taken from the previous response.

target_project_id: Option<String>

Specify which project (field value is actually project id) to operate. Only used when provided credential.

delegated_project_number: Option<String>

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.

max_results: Option<u32>

The max number of results to return in the response.

Trait Implementations

impl Clone for IdentitytoolkitRelyingpartyDownloadAccountRequest[src]

impl Debug for IdentitytoolkitRelyingpartyDownloadAccountRequest[src]

impl Default for IdentitytoolkitRelyingpartyDownloadAccountRequest[src]

impl<'de> Deserialize<'de> for IdentitytoolkitRelyingpartyDownloadAccountRequest[src]

impl RequestValue for IdentitytoolkitRelyingpartyDownloadAccountRequest[src]

impl Serialize for IdentitytoolkitRelyingpartyDownloadAccountRequest[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any