pub struct UnconfirmedDelivery<M> {
pub delivery_id: u64,
pub destination: String,
pub message: M,
}Fields§
§delivery_id: u64§destination: String§message: MTrait Implementations§
Source§impl<M: Clone> Clone for UnconfirmedDelivery<M>
impl<M: Clone> Clone for UnconfirmedDelivery<M>
Source§fn clone(&self) -> UnconfirmedDelivery<M>
fn clone(&self) -> UnconfirmedDelivery<M>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<M> Freeze for UnconfirmedDelivery<M>where
M: Freeze,
impl<M> RefUnwindSafe for UnconfirmedDelivery<M>where
M: RefUnwindSafe,
impl<M> Send for UnconfirmedDelivery<M>where
M: Send,
impl<M> Sync for UnconfirmedDelivery<M>where
M: Sync,
impl<M> Unpin for UnconfirmedDelivery<M>where
M: Unpin,
impl<M> UnsafeUnpin for UnconfirmedDelivery<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for UnconfirmedDelivery<M>where
M: UnwindSafe,
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