[−][src]Struct serenity::utils::ContentSafeOptions
Struct that allows to alter content_safe's behaviour.
Implementations
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(&self) -> ContentSafeOptions[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ContentSafeOptions[src]
impl Default for ContentSafeOptions[src]
Auto Trait Implementations
impl RefUnwindSafe for ContentSafeOptions
impl Send for ContentSafeOptions
impl Sync for ContentSafeOptions
impl Unpin for ContentSafeOptions
impl UnwindSafe for ContentSafeOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,