pub enum OutboundDisposition {
Sent,
Dropped(OutboundDropReason),
}Variants§
Sent
Dropped(OutboundDropReason)
Trait Implementations§
Source§impl Clone for OutboundDisposition
impl Clone for OutboundDisposition
Source§fn clone(&self) -> OutboundDisposition
fn clone(&self) -> OutboundDisposition
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 OutboundDisposition
impl Debug for OutboundDisposition
impl Eq for OutboundDisposition
Source§impl PartialEq for OutboundDisposition
impl PartialEq for OutboundDisposition
impl StructuralPartialEq for OutboundDisposition
Auto Trait Implementations§
impl Freeze for OutboundDisposition
impl RefUnwindSafe for OutboundDisposition
impl Send for OutboundDisposition
impl Sync for OutboundDisposition
impl Unpin for OutboundDisposition
impl UnsafeUnpin for OutboundDisposition
impl UnwindSafe for OutboundDisposition
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