pub struct Delivery {
pub from: NodeId,
pub to: NodeId,
pub seq: u64,
pub outcome: DeliveryOutcome,
}Expand description
A delivery event returned by Network::deliver_due.
Fields§
§from: NodeIdSender.
to: NodeIdDestination.
seq: u64Sequence number.
outcome: DeliveryOutcomeWhat happened.
Trait Implementations§
impl Copy for Delivery
impl Eq for Delivery
impl StructuralPartialEq for Delivery
Auto Trait Implementations§
impl Freeze for Delivery
impl RefUnwindSafe for Delivery
impl Send for Delivery
impl Sync for Delivery
impl Unpin for Delivery
impl UnsafeUnpin for Delivery
impl UnwindSafe for Delivery
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