pub struct ResetPasswordWithOrgIdRequestModel {
pub reset_password_key: Option<String>,
pub master_password_hash: Option<String>,
pub organization_id: Uuid,
}
Fields§
§reset_password_key: Option<String>
§master_password_hash: Option<String>
§organization_id: Uuid
Implementations§
Source§impl ResetPasswordWithOrgIdRequestModel
impl ResetPasswordWithOrgIdRequestModel
pub fn new(organization_id: Uuid) -> ResetPasswordWithOrgIdRequestModel
Trait Implementations§
Source§impl Clone for ResetPasswordWithOrgIdRequestModel
impl Clone for ResetPasswordWithOrgIdRequestModel
Source§fn clone(&self) -> ResetPasswordWithOrgIdRequestModel
fn clone(&self) -> ResetPasswordWithOrgIdRequestModel
Returns a copy 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 ResetPasswordWithOrgIdRequestModel
impl Default for ResetPasswordWithOrgIdRequestModel
Source§fn default() -> ResetPasswordWithOrgIdRequestModel
fn default() -> ResetPasswordWithOrgIdRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResetPasswordWithOrgIdRequestModel
impl<'de> Deserialize<'de> for ResetPasswordWithOrgIdRequestModel
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 ResetPasswordWithOrgIdRequestModel
impl PartialEq for ResetPasswordWithOrgIdRequestModel
Source§fn eq(&self, other: &ResetPasswordWithOrgIdRequestModel) -> bool
fn eq(&self, other: &ResetPasswordWithOrgIdRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResetPasswordWithOrgIdRequestModel
Auto Trait Implementations§
impl Freeze for ResetPasswordWithOrgIdRequestModel
impl RefUnwindSafe for ResetPasswordWithOrgIdRequestModel
impl Send for ResetPasswordWithOrgIdRequestModel
impl Sync for ResetPasswordWithOrgIdRequestModel
impl Unpin for ResetPasswordWithOrgIdRequestModel
impl UnwindSafe for ResetPasswordWithOrgIdRequestModel
Blanket Implementations§
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