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