pub struct SingleDelivery<'p> {
pub destination: DestinationHash,
pub context: WireContext,
pub plaintext: &'p [u8],
pub opened_by: OpenedBy,
pub arrived_at: InstantMillis,
pub source_interface: InterfaceId,
}Fields§
§destination: DestinationHash§context: WireContext§plaintext: &'p [u8]§opened_by: OpenedBy§arrived_at: InstantMillis§source_interface: InterfaceIdTrait Implementations§
Source§impl<'p> Clone for SingleDelivery<'p>
impl<'p> Clone for SingleDelivery<'p>
Source§fn clone(&self) -> SingleDelivery<'p>
fn clone(&self) -> SingleDelivery<'p>
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 moreimpl<'p> Copy for SingleDelivery<'p>
Source§impl<'p> Debug for SingleDelivery<'p>
impl<'p> Debug for SingleDelivery<'p>
impl<'p> Eq for SingleDelivery<'p>
Source§impl<'p> PartialEq for SingleDelivery<'p>
impl<'p> PartialEq for SingleDelivery<'p>
impl<'p> StructuralPartialEq for SingleDelivery<'p>
Auto Trait Implementations§
impl<'p> Freeze for SingleDelivery<'p>
impl<'p> RefUnwindSafe for SingleDelivery<'p>
impl<'p> Send for SingleDelivery<'p>
impl<'p> Sync for SingleDelivery<'p>
impl<'p> Unpin for SingleDelivery<'p>
impl<'p> UnsafeUnpin for SingleDelivery<'p>
impl<'p> UnwindSafe for SingleDelivery<'p>
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