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<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
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