pub struct OutboundBundle<T: 'static, R: 'static> {
pub events: Node<OutboundEvent<T, R>>,
pub status: Node<OutboundStatus>,
pub attempts: Node<u32>,
pub errors: Node<String>,
}Expand description
OutboundBundle data container.
Fields§
§events: Node<OutboundEvent<T, R>>events field for events.
status: Node<OutboundStatus>status field for status.
attempts: Node<u32>attempts field for attempts.
errors: Node<String>errors field for errors.
Auto Trait Implementations§
impl<T, R> Freeze for OutboundBundle<T, R>
impl<T, R> !RefUnwindSafe for OutboundBundle<T, R>
impl<T, R> !Send for OutboundBundle<T, R>
impl<T, R> !Sync for OutboundBundle<T, R>
impl<T, R> Unpin for OutboundBundle<T, R>
impl<T, R> UnsafeUnpin for OutboundBundle<T, R>
impl<T, R> !UnwindSafe for OutboundBundle<T, R>
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