pub enum DispatchResult {
Queued,
Dropped,
}Expand description
Result of dispatching a packet to a worker.
Variants§
Trait Implementations§
Source§impl Clone for DispatchResult
impl Clone for DispatchResult
Source§fn clone(&self) -> DispatchResult
fn clone(&self) -> DispatchResult
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 DispatchResult
impl Debug for DispatchResult
Source§impl PartialEq for DispatchResult
impl PartialEq for DispatchResult
impl Copy for DispatchResult
impl Eq for DispatchResult
impl StructuralPartialEq for DispatchResult
Auto Trait Implementations§
impl Freeze for DispatchResult
impl RefUnwindSafe for DispatchResult
impl Send for DispatchResult
impl Sync for DispatchResult
impl Unpin for DispatchResult
impl UnwindSafe for DispatchResult
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