pub struct DeliveryId(/* private fields */);Expand description
Host delivery identity for one signal delivery attempt.
Implementations§
Source§impl DeliveryId
impl DeliveryId
Trait Implementations§
Source§impl Clone for DeliveryId
impl Clone for DeliveryId
Source§fn clone(&self) -> DeliveryId
fn clone(&self) -> DeliveryId
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 DeliveryId
impl Debug for DeliveryId
Source§impl<'de> Deserialize<'de> for DeliveryId
impl<'de> Deserialize<'de> for DeliveryId
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DeliveryId
impl Display for DeliveryId
impl Eq for DeliveryId
Source§impl Hash for DeliveryId
impl Hash for DeliveryId
Source§impl Ord for DeliveryId
impl Ord for DeliveryId
Source§fn cmp(&self, other: &DeliveryId) -> Ordering
fn cmp(&self, other: &DeliveryId) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for DeliveryId
impl PartialEq for DeliveryId
Source§impl PartialOrd for DeliveryId
impl PartialOrd for DeliveryId
Source§impl Serialize for DeliveryId
impl Serialize for DeliveryId
impl StructuralPartialEq for DeliveryId
Auto Trait Implementations§
impl Freeze for DeliveryId
impl RefUnwindSafe for DeliveryId
impl Send for DeliveryId
impl Sync for DeliveryId
impl Unpin for DeliveryId
impl UnsafeUnpin for DeliveryId
impl UnwindSafe for DeliveryId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more