pub struct CreateAutoModerationRule<'a> { /* private fields */ }
Expand description

Create an auto moderation rule within a guild.

Requires the MANAGE_GUILD permission.

Examples

Create a rule that deletes messages that contain the word “darn”:

use twilight_http::Client;
use twilight_model::{guild::auto_moderation::AutoModerationEventType, id::Id};

let client = Client::new("my token".to_owned());

let guild_id = Id::new(1);
client
    .create_auto_moderation_rule(guild_id, "no darns", AutoModerationEventType::MessageSend)
    .action_block_message()
    .enabled(true)
    .with_keyword(&["darn"])
    .await?;

Implementations§

source§

impl<'a> CreateAutoModerationRule<'a>

source

pub fn action_block_message(self) -> Self

Append an action of type BlockMessage.

source

pub fn action_block_message_with_explanation( self, custom_message: &'a str ) -> Result<Self, ValidationError>

Append an action of type BlockMessage with an explanation for blocking messages.

Errors

Returns a AutoModerationBlockActionCustomMessageLimit if the custom message length is invalid.

source

pub fn action_send_alert_message(self, channel_id: Id<ChannelMarker>) -> Self

Append an action of type SendAlertMessage.

source

pub fn action_timeout(self, duration_seconds: u32) -> Self

Append an action of type Timeout.

source

pub const fn enabled(self, enabled: bool) -> Self

Set whether the rule is enabled.

source

pub const fn exempt_channels( self, exempt_channels: &'a [Id<ChannelMarker>] ) -> Self

Set the channels where the rule does not apply.

source

pub const fn exempt_roles(self, exempt_roles: &'a [Id<RoleMarker>]) -> Self

Set the roles to which the rule does not apply.

source

pub fn with_keyword( self, keyword_filter: &'a [&'a str] ) -> ResponseFuture<AutoModerationRule>

Create the request with the trigger type Keyword, then execute it.

Rules of this type require the keyword_filter field specified, and this method ensures this. See Discord Docs/Keyword Matching Strategies and Discord Docs/Trigger Metadata.

source

pub fn with_spam(self) -> ResponseFuture<AutoModerationRule>

Create the request with the trigger type Spam, then execute it.

source

pub fn with_keyword_preset( self, presets: &'a [AutoModerationKeywordPresetType], allow_list: &'a [&'a str] ) -> ResponseFuture<AutoModerationRule>

Create the request with the trigger type KeywordPreset, then execute it.

Rules of this type require the presets and allow_list fields specified, and this method ensures this. See Discord Docs/Trigger Metadata.

source

pub fn with_mention_spam( self, mention_total_limit: u8 ) -> Result<ResponseFuture<AutoModerationRule>, ValidationError>

Create the request with the trigger type MentionSpam, then execute it.

Rules of this type requires the mention_total_limit field specified, and this method ensures this. See Discord Docs/Trigger Metadata.

Errors

Returns an error of type AutoModerationMetadataMentionTotalLimit if the limit is invalid.

Trait Implementations§

source§

impl<'a> AuditLogReason<'a> for CreateAutoModerationRule<'a>

source§

fn reason(self, reason: &'a str) -> Result<Self, ValidationError>

Attach an audit log reason to the request. Read more
source§

impl TryIntoRequest for CreateAutoModerationRule<'_>

source§

fn try_into_request(self) -> Result<Request, HttpError>

Try to convert a request builder into a raw Request. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more