Struct google_identitytoolkit3::api::IdentitytoolkitRelyingpartyUploadAccountRequest[][src]

pub struct IdentitytoolkitRelyingpartyUploadAccountRequest {
    pub allow_overwrite: Option<bool>,
    pub block_size: Option<i32>,
    pub cpu_mem_cost: Option<i32>,
    pub delegated_project_number: Option<String>,
    pub dk_len: Option<i32>,
    pub hash_algorithm: Option<String>,
    pub memory_cost: Option<i32>,
    pub parallelization: Option<i32>,
    pub rounds: Option<i32>,
    pub salt_separator: Option<String>,
    pub sanity_check: Option<bool>,
    pub signer_key: Option<String>,
    pub target_project_id: Option<String>,
    pub users: Option<Vec<UserInfo>>,
}

Request to upload 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

allow_overwrite: Option<bool>

Whether allow overwrite existing account when user local_id exists.

block_size: Option<i32>

no description provided

cpu_mem_cost: Option<i32>

The following 4 fields are for standard scrypt algorithm.

delegated_project_number: Option<String>

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

dk_len: Option<i32>

no description provided

hash_algorithm: Option<String>

The password hash algorithm.

memory_cost: Option<i32>

Memory cost for hash calculation. Used by scrypt similar algorithms.

parallelization: Option<i32>

no description provided

rounds: Option<i32>

Rounds for hash calculation. Used by scrypt and similar algorithms.

salt_separator: Option<String>

The salt separator.

sanity_check: Option<bool>

If true, backend will do sanity check(including duplicate email and federated id) when uploading account.

signer_key: Option<String>

The key for to hash the password.

target_project_id: Option<String>

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

users: Option<Vec<UserInfo>>

The account info to be stored.

Trait Implementations

impl Clone for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

impl Debug for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

impl Default for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

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

impl RequestValue for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

impl Serialize for IdentitytoolkitRelyingpartyUploadAccountRequest[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> Instrument 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.