pub struct DestinationOutcome {
pub destination: String,
pub attempts: u32,
pub notification: Notification,
}Fields§
§destination: String§attempts: u32§notification: NotificationTrait Implementations§
Source§impl Clone for DestinationOutcome
impl Clone for DestinationOutcome
Source§fn clone(&self) -> DestinationOutcome
fn clone(&self) -> DestinationOutcome
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 DestinationOutcome
impl Debug for DestinationOutcome
Source§impl<'de> Deserialize<'de> for DestinationOutcome
impl<'de> Deserialize<'de> for DestinationOutcome
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DestinationOutcome, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DestinationOutcome, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DestinationOutcome
impl Serialize for DestinationOutcome
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for DestinationOutcome
impl RefUnwindSafe for DestinationOutcome
impl Send for DestinationOutcome
impl Sync for DestinationOutcome
impl Unpin for DestinationOutcome
impl UnsafeUnpin for DestinationOutcome
impl UnwindSafe for DestinationOutcome
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