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>,
    pub provider_status: Option<ProviderStatusType>,
    pub provider_type: Option<ProviderType>,
}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>§provider_status: Option<ProviderStatusType>§provider_type: Option<ProviderType>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 duplicate 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 Default for ProfileProviderResponseModel
 
impl Default for ProfileProviderResponseModel
Source§fn default() -> ProfileProviderResponseModel
 
fn default() -> ProfileProviderResponseModel
Returns the “default value” for a type. Read more
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
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§
§impl<T> AnySync for T
 
impl<T> AnySync for T
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