[][src]Struct twilight_model::guild::audit_log::PartialGuildIntegration

pub struct PartialGuildIntegration {
    pub account: Option<IntegrationAccount>,
    pub enabled: Option<bool>,
    pub expire_behavior: Option<u64>,
    pub expire_grace_period: Option<u64>,
    pub id: Option<IntegrationId>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub role_id: Option<IntegrationId>,
    pub synced_at: Option<String>,
    pub syncing: Option<bool>,
    pub user: Option<User>,
}

Fields

account: Option<IntegrationAccount>enabled: Option<bool>expire_behavior: Option<u64>expire_grace_period: Option<u64>id: Option<IntegrationId>kind: Option<String>name: Option<String>role_id: Option<IntegrationId>synced_at: Option<String>syncing: Option<bool>user: Option<User>

Trait Implementations

impl Clone for PartialGuildIntegration[src]

impl Debug for PartialGuildIntegration[src]

impl<'de> Deserialize<'de> for PartialGuildIntegration[src]

impl Eq for PartialGuildIntegration[src]

impl Hash for PartialGuildIntegration[src]

impl PartialEq<PartialGuildIntegration> for PartialGuildIntegration[src]

impl Serialize for PartialGuildIntegration[src]

impl StructuralEq for PartialGuildIntegration[src]

impl StructuralPartialEq for PartialGuildIntegration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.