[][src]Struct google_identitytoolkit3::IdentitytoolkitRelyingpartyUploadAccountRequest

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

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

dk_len: Option<i32>

no description provided

hash_algorithm: Option<String>

The password hash algorithm.

delegated_project_number: Option<String>

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

allow_overwrite: Option<bool>

Whether allow overwrite existing account when user local_id exists.

users: Option<Vec<UserInfo>>

The account info to be stored.

parallelization: Option<i32>

no description provided

block_size: Option<i32>

no description provided

sanity_check: Option<bool>

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

cpu_mem_cost: Option<i32>

The following 4 fields are for standard scrypt algorithm.

signer_key: Option<String>

The key for to hash the password.

memory_cost: Option<i32>

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

salt_separator: Option<String>

The salt separator.

target_project_id: Option<String>

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

rounds: Option<i32>

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

Trait Implementations

impl RequestValue for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

impl Default for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

impl Clone for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

impl Serialize for IdentitytoolkitRelyingpartyUploadAccountRequest[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]