pub struct SetInitialPasswordRequestModel {
pub master_password_hash: Option<String>,
pub key: Option<String>,
pub keys: Option<Box<KeysRequestModel>>,
pub kdf: Option<KdfType>,
pub kdf_iterations: Option<i32>,
pub kdf_memory: Option<i32>,
pub kdf_parallelism: Option<i32>,
pub master_password_authentication: Option<Box<MasterPasswordAuthenticationDataRequestModel>>,
pub master_password_unlock: Option<Box<MasterPasswordUnlockDataRequestModel>>,
pub account_keys: Option<Box<AccountKeysRequestModel>>,
pub master_password_hint: Option<String>,
pub org_identifier: String,
}Fields§
§master_password_hash: Option<String>§key: Option<String>§keys: Option<Box<KeysRequestModel>>§kdf: Option<KdfType>§kdf_iterations: Option<i32>§kdf_memory: Option<i32>§kdf_parallelism: Option<i32>§master_password_authentication: Option<Box<MasterPasswordAuthenticationDataRequestModel>>§master_password_unlock: Option<Box<MasterPasswordUnlockDataRequestModel>>§account_keys: Option<Box<AccountKeysRequestModel>>§master_password_hint: Option<String>§org_identifier: StringImplementations§
Source§impl SetInitialPasswordRequestModel
impl SetInitialPasswordRequestModel
pub fn new(org_identifier: String) -> SetInitialPasswordRequestModel
Trait Implementations§
Source§impl Clone for SetInitialPasswordRequestModel
impl Clone for SetInitialPasswordRequestModel
Source§fn clone(&self) -> SetInitialPasswordRequestModel
fn clone(&self) -> SetInitialPasswordRequestModel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SetInitialPasswordRequestModel
impl Default for SetInitialPasswordRequestModel
Source§fn default() -> SetInitialPasswordRequestModel
fn default() -> SetInitialPasswordRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetInitialPasswordRequestModel
impl<'de> Deserialize<'de> for SetInitialPasswordRequestModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SetInitialPasswordRequestModel
impl PartialEq for SetInitialPasswordRequestModel
Source§fn eq(&self, other: &SetInitialPasswordRequestModel) -> bool
fn eq(&self, other: &SetInitialPasswordRequestModel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetInitialPasswordRequestModel
Auto Trait Implementations§
impl Freeze for SetInitialPasswordRequestModel
impl RefUnwindSafe for SetInitialPasswordRequestModel
impl Send for SetInitialPasswordRequestModel
impl Sync for SetInitialPasswordRequestModel
impl Unpin for SetInitialPasswordRequestModel
impl UnwindSafe for SetInitialPasswordRequestModel
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more