pub enum BackpressureError {
AtCapacity {
active: usize,
max: usize,
},
}Expand description
Errors from backpressure enforcement.
Variants§
AtCapacity
Coordinator is at capacity.
Trait Implementations§
Source§impl Clone for BackpressureError
impl Clone for BackpressureError
Source§fn clone(&self) -> BackpressureError
fn clone(&self) -> BackpressureError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BackpressureError
impl Debug for BackpressureError
Source§impl Display for BackpressureError
impl Display for BackpressureError
impl Eq for BackpressureError
Source§impl Error for BackpressureError
impl Error for BackpressureError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for BackpressureError
impl PartialEq for BackpressureError
Source§fn eq(&self, other: &BackpressureError) -> bool
fn eq(&self, other: &BackpressureError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackpressureError
Auto Trait Implementations§
impl Freeze for BackpressureError
impl RefUnwindSafe for BackpressureError
impl Send for BackpressureError
impl Sync for BackpressureError
impl Unpin for BackpressureError
impl UnsafeUnpin for BackpressureError
impl UnwindSafe for BackpressureError
Blanket Implementations§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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