pub struct AuthRequestResponseModel {
pub object: Option<String>,
pub id: Option<String>,
pub public_key: Option<String>,
pub request_device_type: Option<String>,
pub request_ip_address: Option<String>,
pub request_fingerprint: 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<String>
§public_key: Option<String>
§request_device_type: Option<String>
§request_ip_address: Option<String>
§request_fingerprint: 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<AuthRequestResponseModel> for AuthRequestResponseModel
impl PartialEq<AuthRequestResponseModel> for AuthRequestResponseModel
source§fn eq(&self, other: &AuthRequestResponseModel) -> bool
fn eq(&self, other: &AuthRequestResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.