pub struct OutboxEntry {
pub operation_id: String,
pub events: Vec<ChangeEvent>,
pub retry_count: u32,
pub created_at: u64,
pub dispatched_count: usize,
}Fields§
§operation_id: String§events: Vec<ChangeEvent>§retry_count: u32§created_at: u64§dispatched_count: usizeTrait Implementations§
Source§impl Clone for OutboxEntry
impl Clone for OutboxEntry
Source§fn clone(&self) -> OutboxEntry
fn clone(&self) -> OutboxEntry
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 moreAuto Trait Implementations§
impl Freeze for OutboxEntry
impl RefUnwindSafe for OutboxEntry
impl Send for OutboxEntry
impl Sync for OutboxEntry
impl Unpin for OutboxEntry
impl UnsafeUnpin for OutboxEntry
impl UnwindSafe for OutboxEntry
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