#[non_exhaustive]pub enum AutoModQueueReply {
AutoModCaughtMessage(AutoModCaughtMessage),
}👎Deprecated since 0.7.0:
use EventSub instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043
Available on crate feature
pubsub only.Expand description
Reply from AutoModQueue
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.
AutoModCaughtMessage(AutoModCaughtMessage)
👎Deprecated since 0.7.0:
use EventSub instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043
Message held by automod
Trait Implementations§
Source§impl Clone for AutoModQueueReply
impl Clone for AutoModQueueReply
Source§fn clone(&self) -> AutoModQueueReply
fn clone(&self) -> AutoModQueueReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AutoModQueueReply
impl Debug for AutoModQueueReply
Source§impl<'de> Deserialize<'de> for AutoModQueueReply
impl<'de> Deserialize<'de> for AutoModQueueReply
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
impl Eq for AutoModQueueReply
Source§impl PartialEq for AutoModQueueReply
impl PartialEq for AutoModQueueReply
Source§impl Serialize for AutoModQueueReply
impl Serialize for AutoModQueueReply
impl StructuralPartialEq for AutoModQueueReply
Auto Trait Implementations§
impl Freeze for AutoModQueueReply
impl RefUnwindSafe for AutoModQueueReply
impl Send for AutoModQueueReply
impl Sync for AutoModQueueReply
impl Unpin for AutoModQueueReply
impl UnsafeUnpin for AutoModQueueReply
impl UnwindSafe for AutoModQueueReply
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