pub struct ListAdminIntegrationOAuthProvidersResponseProvider {
pub id: String,
pub configured: bool,
pub enabled: bool,
}Expand description
ListAdminIntegrationOAuthProvidersResponseProvider model.
Fields§
§id: String§configured: boolA record exists for this provider.
enabled: boolEnabled AND holding both a client id and a secret — a provider switched on with incomplete credentials reports false here, so this is readiness rather than the stored flag.
Trait Implementations§
Source§impl Clone for ListAdminIntegrationOAuthProvidersResponseProvider
impl Clone for ListAdminIntegrationOAuthProvidersResponseProvider
Source§fn clone(&self) -> ListAdminIntegrationOAuthProvidersResponseProvider
fn clone(&self) -> ListAdminIntegrationOAuthProvidersResponseProvider
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListAdminIntegrationOAuthProvidersResponseProvider
impl Default for ListAdminIntegrationOAuthProvidersResponseProvider
Source§fn default() -> ListAdminIntegrationOAuthProvidersResponseProvider
fn default() -> ListAdminIntegrationOAuthProvidersResponseProvider
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAdminIntegrationOAuthProvidersResponseProvider
impl<'de> Deserialize<'de> for ListAdminIntegrationOAuthProvidersResponseProvider
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
impl StructuralPartialEq for ListAdminIntegrationOAuthProvidersResponseProvider
Auto Trait Implementations§
impl Freeze for ListAdminIntegrationOAuthProvidersResponseProvider
impl RefUnwindSafe for ListAdminIntegrationOAuthProvidersResponseProvider
impl Send for ListAdminIntegrationOAuthProvidersResponseProvider
impl Sync for ListAdminIntegrationOAuthProvidersResponseProvider
impl Unpin for ListAdminIntegrationOAuthProvidersResponseProvider
impl UnsafeUnpin for ListAdminIntegrationOAuthProvidersResponseProvider
impl UnwindSafe for ListAdminIntegrationOAuthProvidersResponseProvider
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