pub struct AuthRequestResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub public_key: Option<String>,
pub request_device_type: Option<String>,
pub request_ip_address: Option<String>,
pub key: Option<String>,
pub master_password_hash: Option<String>,
pub creation_date: Option<String>,
pub response_date: Option<String>,
pub request_approved: Option<bool>,
pub origin: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§public_key: Option<String>
§request_device_type: Option<String>
§request_ip_address: Option<String>
§key: Option<String>
§master_password_hash: Option<String>
§creation_date: Option<String>
§response_date: Option<String>
§request_approved: Option<bool>
§origin: Option<String>
Implementations§
Source§impl AuthRequestResponseModel
impl AuthRequestResponseModel
pub fn new() -> AuthRequestResponseModel
Trait Implementations§
Source§impl Clone for AuthRequestResponseModel
impl Clone for AuthRequestResponseModel
Source§fn clone(&self) -> AuthRequestResponseModel
fn clone(&self) -> AuthRequestResponseModel
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 Debug for AuthRequestResponseModel
impl Debug for AuthRequestResponseModel
Source§impl Default for AuthRequestResponseModel
impl Default for AuthRequestResponseModel
Source§fn default() -> AuthRequestResponseModel
fn default() -> AuthRequestResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthRequestResponseModel
impl<'de> Deserialize<'de> for AuthRequestResponseModel
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 AuthRequestResponseModel
impl PartialEq for AuthRequestResponseModel
Source§impl Serialize for AuthRequestResponseModel
impl Serialize for AuthRequestResponseModel
impl StructuralPartialEq for AuthRequestResponseModel
Auto Trait Implementations§
impl Freeze for AuthRequestResponseModel
impl RefUnwindSafe for AuthRequestResponseModel
impl Send for AuthRequestResponseModel
impl Sync for AuthRequestResponseModel
impl Unpin for AuthRequestResponseModel
impl UnwindSafe for AuthRequestResponseModel
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