[][src]Struct spectacles_model::guild::ModifyGuildOptions

pub struct ModifyGuildOptions { /* fields omitted */ }

A body that can be sent to the Modify Guild endpoint.

Methods

impl ModifyGuildOptions[src]

pub fn name(self, name: &str) -> Self[src]

Sets a new name for this guild.

pub fn region(self, reg: &str) -> Self[src]

Sets a new region for this guild.

pub fn verification_level(self, level: VerificationLevel) -> Self[src]

Sets a new verification level for this guild.

pub fn default_message_notifications(
    self,
    level: DefaultMessageNotifications
) -> Self
[src]

Sets the default message notifications level for this guild.

pub fn explicit_content_filter(self, filter: ExplicitContentFilter) -> Self[src]

Sets the explicit content filter for this guild.

pub fn afk_channel(self, id: Snowflake) -> Self[src]

Sets the AFK channel for this guild.

pub fn afk_timeout(self, timeout: i32) -> Self[src]

Sets the AFK timeout for this guild.

pub fn icon(self, url: &str) -> Self[src]

Sets the icon of this guild.

pub fn owner(self, id: Snowflake) -> Self[src]

Sets a new owner for this guild.

pub fn splash(self, url: &str) -> Self[src]

Sets the splash icon for this guild.

pub fn system_channel(self, chan: Snowflake) -> Self[src]

Sets the system channel of this guild.

Trait Implementations

impl Clone for ModifyGuildOptions[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ModifyGuildOptions[src]

impl Serialize for ModifyGuildOptions[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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