#[repr(u8)]pub enum AutoModEventType {
MessageSend = 1,
MemberUpdate = 2,
}Expand description
AutoMod event types.
Variants§
MessageSend = 1
When a member sends or edits a message.
MemberUpdate = 2
When a member edits their profile.
Trait Implementations§
Source§impl Clone for AutoModEventType
impl Clone for AutoModEventType
Source§fn clone(&self) -> AutoModEventType
fn clone(&self) -> AutoModEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutoModEventType
impl Debug for AutoModEventType
Source§impl<'de> Deserialize<'de> for AutoModEventType
impl<'de> Deserialize<'de> for AutoModEventType
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AutoModEventType
impl PartialEq for AutoModEventType
Source§impl Serialize for AutoModEventType
impl Serialize for AutoModEventType
impl Copy for AutoModEventType
impl Eq for AutoModEventType
impl StructuralPartialEq for AutoModEventType
Auto Trait Implementations§
impl Freeze for AutoModEventType
impl RefUnwindSafe for AutoModEventType
impl Send for AutoModEventType
impl Sync for AutoModEventType
impl Unpin for AutoModEventType
impl UnwindSafe for AutoModEventType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.