pub struct PendingOrganizationAuthRequestResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub user_id: Option<Uuid>,
pub organization_user_id: Option<Uuid>,
pub email: Option<String>,
pub public_key: Option<String>,
pub request_device_identifier: Option<String>,
pub request_device_type: Option<String>,
pub request_ip_address: Option<String>,
pub creation_date: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§user_id: Option<Uuid>
§organization_user_id: Option<Uuid>
§email: Option<String>
§public_key: Option<String>
§request_device_identifier: Option<String>
§request_device_type: Option<String>
§request_ip_address: Option<String>
§creation_date: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for PendingOrganizationAuthRequestResponseModel
impl Clone for PendingOrganizationAuthRequestResponseModel
Source§fn clone(&self) -> PendingOrganizationAuthRequestResponseModel
fn clone(&self) -> PendingOrganizationAuthRequestResponseModel
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 PendingOrganizationAuthRequestResponseModel
impl Default for PendingOrganizationAuthRequestResponseModel
Source§fn default() -> PendingOrganizationAuthRequestResponseModel
fn default() -> PendingOrganizationAuthRequestResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingOrganizationAuthRequestResponseModel
impl<'de> Deserialize<'de> for PendingOrganizationAuthRequestResponseModel
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 PendingOrganizationAuthRequestResponseModel
impl PartialEq for PendingOrganizationAuthRequestResponseModel
Source§fn eq(&self, other: &PendingOrganizationAuthRequestResponseModel) -> bool
fn eq(&self, other: &PendingOrganizationAuthRequestResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PendingOrganizationAuthRequestResponseModel
Auto Trait Implementations§
impl Freeze for PendingOrganizationAuthRequestResponseModel
impl RefUnwindSafe for PendingOrganizationAuthRequestResponseModel
impl Send for PendingOrganizationAuthRequestResponseModel
impl Sync for PendingOrganizationAuthRequestResponseModel
impl Unpin for PendingOrganizationAuthRequestResponseModel
impl UnwindSafe for PendingOrganizationAuthRequestResponseModel
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