pub struct OutboxConfig<P>{
pub batch_size: u32,
pub retention_days: i64,
pub gc_interval_secs: u64,
pub poll_interval_secs: u64,
pub lock_timeout_mins: i64,
pub idempotency_strategy: IdempotencyStrategy<P>,
}Fields§
§batch_size: u32§retention_days: i64§gc_interval_secs: u64§poll_interval_secs: u64§lock_timeout_mins: i64§idempotency_strategy: IdempotencyStrategy<P>Trait Implementations§
Source§impl<P> Clone for OutboxConfig<P>
impl<P> Clone for OutboxConfig<P>
Source§fn clone(&self) -> OutboxConfig<P>
fn clone(&self) -> OutboxConfig<P>
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<P> Freeze for OutboxConfig<P>
impl<P> RefUnwindSafe for OutboxConfig<P>
impl<P> Send for OutboxConfig<P>
impl<P> Sync for OutboxConfig<P>
impl<P> Unpin for OutboxConfig<P>
impl<P> UnsafeUnpin for OutboxConfig<P>
impl<P> UnwindSafe for OutboxConfig<P>
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