Struct bitwarden_api_api::models::pending_organization_auth_request_response_model::PendingOrganizationAuthRequestResponseModel
source · 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<'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
This method 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