pub enum PublisherPriority {
High,
Normal,
Low,
}Variants§
Trait Implementations§
Source§impl Clone for PublisherPriority
impl Clone for PublisherPriority
Source§fn clone(&self) -> PublisherPriority
fn clone(&self) -> PublisherPriority
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 PublisherPriority
impl Debug for PublisherPriority
Source§impl Default for PublisherPriority
impl Default for PublisherPriority
Source§impl Pack for PublisherPriority
impl Pack for PublisherPriority
fn encoded_len(&self) -> usize
fn encode(&self, buf: &mut impl BufMut) -> Result<(), PackError>
fn decode(buf: &mut impl Buf) -> Result<Self, PackError>
fn const_encoded_len() -> Option<usize>
fn decode_into(&mut self, buf: &mut impl Buf) -> Result<(), PackError>where
Self: Sized,
Source§impl PartialEq for PublisherPriority
impl PartialEq for PublisherPriority
impl Copy for PublisherPriority
impl Eq for PublisherPriority
impl StructuralPartialEq for PublisherPriority
Auto Trait Implementations§
impl Freeze for PublisherPriority
impl RefUnwindSafe for PublisherPriority
impl Send for PublisherPriority
impl Sync for PublisherPriority
impl Unpin for PublisherPriority
impl UnwindSafe for PublisherPriority
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.