#[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/58043Available 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/58043Message 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 ยท 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
Sourceยงimpl PartialEq for AutoModQueueReply
impl PartialEq for AutoModQueueReply
Sourceยงimpl Serialize for AutoModQueueReply
impl Serialize for AutoModQueueReply
impl Eq 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 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