#[non_exhaustive]pub enum AutomodStatus {
Pending,
Allowed,
Denied,
Expired,
}
Available on crate feature
moderation
only.Expand description
Status of a message that is or was in AutoMod queue
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pending
Message has been caught and pending moderation
Allowed
Message has been allowed
Denied
Message has been denied
Expired
Automod message expired in queue
Trait Implementations§
Source§impl Clone for AutomodStatus
impl Clone for AutomodStatus
Source§fn clone(&self) -> AutomodStatus
fn clone(&self) -> AutomodStatus
Returns a copy 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 AutomodStatus
impl Debug for AutomodStatus
Source§impl<'de> Deserialize<'de> for AutomodStatus
impl<'de> Deserialize<'de> for AutomodStatus
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 AutomodStatus
impl PartialEq for AutomodStatus
Source§impl Serialize for AutomodStatus
impl Serialize for AutomodStatus
impl Eq for AutomodStatus
impl StructuralPartialEq for AutomodStatus
Auto Trait Implementations§
impl Freeze for AutomodStatus
impl RefUnwindSafe for AutomodStatus
impl Send for AutomodStatus
impl Sync for AutomodStatus
impl Unpin for AutomodStatus
impl UnwindSafe for AutomodStatus
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)