Enum PendingKind
pub enum PendingKind {
Subscribe {
subscription_id: Option<u32>,
},
Unsubscribe,
}Expand description
Whether a pending group is a SUBSCRIBE or an UNSUBSCRIBE, returned as part
of PendingMeta.
Variants§
Subscribe
A SUBSCRIBE group; subscription_id is its §3.8.2.1.2 identifier, if
any.
Unsubscribe
An UNSUBSCRIBE group.
Trait Implementations§
§impl Clone for PendingKind
impl Clone for PendingKind
§fn clone(&self) -> PendingKind
fn clone(&self) -> PendingKind
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 more§impl Debug for PendingKind
impl Debug for PendingKind
§impl PartialEq for PendingKind
impl PartialEq for PendingKind
impl Copy for PendingKind
impl Eq for PendingKind
impl StructuralPartialEq for PendingKind
Auto Trait Implementations§
impl Freeze for PendingKind
impl RefUnwindSafe for PendingKind
impl Send for PendingKind
impl Sync for PendingKind
impl Unpin for PendingKind
impl UnwindSafe for PendingKind
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