pub struct GetAdminIntegrationsResponseIntegration {
pub id: String,
pub name: String,
pub icon: Option<String>,
pub auth_type: Option<GetAdminIntegrationsResponseIntegrationAuthType>,
pub category: Option<String>,
pub enabled: bool,
pub beta: Option<bool>,
pub source: Option<String>,
}Expand description
GetAdminIntegrationsResponseIntegration model.
Fields§
§id: String§name: String§icon: Option<String>§auth_type: Option<GetAdminIntegrationsResponseIntegrationAuthType>§category: Option<String>§enabled: bool§beta: Option<bool>§source: Option<String>kv when an operator overrode the shipped default, default otherwise.
Trait Implementations§
Source§impl Clone for GetAdminIntegrationsResponseIntegration
impl Clone for GetAdminIntegrationsResponseIntegration
Source§fn clone(&self) -> GetAdminIntegrationsResponseIntegration
fn clone(&self) -> GetAdminIntegrationsResponseIntegration
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 GetAdminIntegrationsResponseIntegration
impl Default for GetAdminIntegrationsResponseIntegration
Source§fn default() -> GetAdminIntegrationsResponseIntegration
fn default() -> GetAdminIntegrationsResponseIntegration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAdminIntegrationsResponseIntegration
impl<'de> Deserialize<'de> for GetAdminIntegrationsResponseIntegration
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 GetAdminIntegrationsResponseIntegration
Auto Trait Implementations§
impl Freeze for GetAdminIntegrationsResponseIntegration
impl RefUnwindSafe for GetAdminIntegrationsResponseIntegration
impl Send for GetAdminIntegrationsResponseIntegration
impl Sync for GetAdminIntegrationsResponseIntegration
impl Unpin for GetAdminIntegrationsResponseIntegration
impl UnsafeUnpin for GetAdminIntegrationsResponseIntegration
impl UnwindSafe for GetAdminIntegrationsResponseIntegration
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