pub enum MailboxKind {
Unbounded,
Bounded,
UnboundedDeque,
UnboundedPriority,
UnboundedStablePriority,
UnboundedControlAware,
BoundedControlAware,
}Variants§
Unbounded
Bounded
UnboundedDeque
UnboundedPriority
UnboundedStablePriority
UnboundedControlAware
Control messages bypass user messages.
UnboundedControlAwareMessageQueue.
BoundedControlAware
Bounded variant with control-priority bypass.
Trait Implementations§
Source§impl Clone for MailboxKind
impl Clone for MailboxKind
Source§fn clone(&self) -> MailboxKind
fn clone(&self) -> MailboxKind
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 MailboxKind
impl Debug for MailboxKind
Source§impl Default for MailboxKind
impl Default for MailboxKind
Source§fn default() -> MailboxKind
fn default() -> MailboxKind
Returns the “default value” for a type. Read more
Source§impl PartialEq for MailboxKind
impl PartialEq for MailboxKind
impl Copy for MailboxKind
impl Eq for MailboxKind
impl StructuralPartialEq for MailboxKind
Auto Trait Implementations§
impl Freeze for MailboxKind
impl RefUnwindSafe for MailboxKind
impl Send for MailboxKind
impl Sync for MailboxKind
impl Unpin for MailboxKind
impl UnsafeUnpin for MailboxKind
impl UnwindSafe for MailboxKind
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§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.