pub struct OutboxConfig {
pub enabled: bool,
pub retry_interval_ms: u64,
pub max_retries: u32,
pub batch_size: usize,
}Fields§
§enabled: bool§retry_interval_ms: u64§max_retries: u32§batch_size: usizeTrait 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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutboxConfig
impl Debug for OutboxConfig
Auto 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