Struct serenity::model::guild::Integration[][src]

pub struct Integration {
    pub id: IntegrationId,
    pub account: IntegrationAccount,
    pub enabled: bool,
    pub expire_behaviour: u64,
    pub expire_grace_period: u64,
    pub kind: String,
    pub name: String,
    pub role_id: RoleId,
    pub synced_at: u64,
    pub syncing: bool,
    pub user: User,
}

Various information about integrations.

Fields

Trait Implementations

impl Clone for Integration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Integration
[src]

Formats the value using the given formatter. Read more

impl From<Integration> for IntegrationId
[src]

Gets the Id of integration.

Auto Trait Implementations

impl Send for Integration

impl Sync for Integration