pub enum Feedback {
Ok,
Backoff,
Dropped,
Closed,
}Expand description
Feedback from submitting work to a bounded endpoint.
Variants§
Ok
The work was accepted within the configured capacity.
Backoff
The submission was handled but requests sender backoff.
Dropped
The work was dropped.
Closed
The endpoint is closed.
Trait Implementations§
impl Copy for Feedback
impl Eq for Feedback
impl StructuralPartialEq for Feedback
Auto Trait Implementations§
impl Freeze for Feedback
impl RefUnwindSafe for Feedback
impl Send for Feedback
impl Sync for Feedback
impl Unpin for Feedback
impl UnsafeUnpin for Feedback
impl UnwindSafe for Feedback
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