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