[][src]Struct serenity::utils::ContentSafeOptions

pub struct ContentSafeOptions { /* fields omitted */ }

Struct that allows to alter content_safe's behaviour.

Methods

impl ContentSafeOptions[src]

pub fn new() -> Self[src]

pub fn clean_role(self, b: bool) -> Self[src]

content_safe will replace role mentions (<@&{id}>) with its name prefixed with @ (@rolename) or with @deleted-role if the identifier is invalid.

pub fn clean_user(self, b: bool) -> Self[src]

If set to true, content_safe will replace user mentions (<@!{id}> or <@{id}>) with the user's name prefixed with @ (@username) or with @invalid-user if the identifier is invalid.

pub fn clean_channel(self, b: bool) -> Self[src]

If set to true, content_safe will replace channel mentions (<#{id}>) with the channel's name prefixed with # (#channelname) or with #deleted-channel if the identifier is invalid.

pub fn show_discriminator(self, b: bool) -> Self[src]

If set to true, if content_safe replaces a user mention it will add their four digit discriminator with a preceeding #, turning @username to @username#discriminator.

pub fn display_as_member_from<G: Into<GuildId>>(self, guild: G) -> Self[src]

If set, content_safe will replace a user mention with the user's display name in passed guild.

pub fn clean_here(self, b: bool) -> Self[src]

If set, content_safe will replace @here with a non-pinging alternative.

pub fn clean_everyone(self, b: bool) -> Self[src]

If set, content_safe will replace @everyone with a non-pinging alternative.

Trait Implementations

impl Clone for ContentSafeOptions[src]

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

Performs copy-assignment from source. Read more

impl Default for ContentSafeOptions[src]

fn default() -> Self[src]

Instantiates with all options set to true.

impl Debug for ContentSafeOptions[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> UnsafeAny for T where
    T: Any