Struct bitwarden_api_api::models::profile_provider_response_model::ProfileProviderResponseModel
source · pub struct ProfileProviderResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub name: Option<String>,
pub key: Option<String>,
pub status: Option<ProviderUserStatusType>,
pub type: Option<ProviderUserType>,
pub enabled: Option<bool>,
pub permissions: Option<Box<Permissions>>,
pub user_id: Option<Uuid>,
pub use_events: Option<bool>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§name: Option<String>
§key: Option<String>
§status: Option<ProviderUserStatusType>
§type: Option<ProviderUserType>
§enabled: Option<bool>
§permissions: Option<Box<Permissions>>
§user_id: Option<Uuid>
§use_events: Option<bool>
Implementations§
source§impl ProfileProviderResponseModel
impl ProfileProviderResponseModel
pub fn new() -> ProfileProviderResponseModel
Trait Implementations§
source§impl Clone for ProfileProviderResponseModel
impl Clone for ProfileProviderResponseModel
source§fn clone(&self) -> ProfileProviderResponseModel
fn clone(&self) -> ProfileProviderResponseModel
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 ProfileProviderResponseModel
impl Debug for ProfileProviderResponseModel
source§impl<'de> Deserialize<'de> for ProfileProviderResponseModel
impl<'de> Deserialize<'de> for ProfileProviderResponseModel
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 ProfileProviderResponseModel
impl PartialEq for ProfileProviderResponseModel
source§fn eq(&self, other: &ProfileProviderResponseModel) -> bool
fn eq(&self, other: &ProfileProviderResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProfileProviderResponseModel
Auto Trait Implementations§
impl Freeze for ProfileProviderResponseModel
impl RefUnwindSafe for ProfileProviderResponseModel
impl Send for ProfileProviderResponseModel
impl Sync for ProfileProviderResponseModel
impl Unpin for ProfileProviderResponseModel
impl UnwindSafe for ProfileProviderResponseModel
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