pub struct DeliverSignal {
pub delivery_id: DeliveryId,
pub attempt: u32,
pub signal: LogicalSignal,
}Fields§
§delivery_id: DeliveryIdHost delivery identity — distinct from the logical signal identity, so a redelivery is recognisable as the same signal.
attempt: u32§signal: LogicalSignalTrait Implementations§
Source§impl Clone for DeliverSignal
impl Clone for DeliverSignal
Source§fn clone(&self) -> DeliverSignal
fn clone(&self) -> DeliverSignal
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 DeliverSignal
impl Debug for DeliverSignal
Source§impl<'de> Deserialize<'de> for DeliverSignal
impl<'de> Deserialize<'de> for DeliverSignal
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeliverSignal
impl PartialEq for DeliverSignal
Source§impl Serialize for DeliverSignal
impl Serialize for DeliverSignal
impl StructuralPartialEq for DeliverSignal
Auto Trait Implementations§
impl Freeze for DeliverSignal
impl RefUnwindSafe for DeliverSignal
impl Send for DeliverSignal
impl Sync for DeliverSignal
impl Unpin for DeliverSignal
impl UnsafeUnpin for DeliverSignal
impl UnwindSafe for DeliverSignal
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