pub enum WhenFull {
Block,
}Expand description
Policy for what to do when a buffer is full.
Variants§
Block
Backpressure upstream (stop accepting messages until space is available).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WhenFull
impl<'de> Deserialize<'de> for WhenFull
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 Copy for WhenFull
impl Eq for WhenFull
impl StructuralPartialEq for WhenFull
Auto Trait Implementations§
impl Freeze for WhenFull
impl RefUnwindSafe for WhenFull
impl Send for WhenFull
impl Sync for WhenFull
impl Unpin for WhenFull
impl UnsafeUnpin for WhenFull
impl UnwindSafe for WhenFull
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.