pub struct OutboxPollingOptions {
pub base: OutboxPollInterval,
pub max: OutboxPollInterval,
pub multiplier: OutboxPollBackoffMultiplier,
pub jitter: OutboxPollJitterRatio,
}Fields§
§base: OutboxPollInterval§max: OutboxPollInterval§multiplier: OutboxPollBackoffMultiplier§jitter: OutboxPollJitterRatioImplementations§
Source§impl OutboxPollingOptions
impl OutboxPollingOptions
pub fn new( base: OutboxPollInterval, max: OutboxPollInterval, multiplier: OutboxPollBackoffMultiplier, jitter: OutboxPollJitterRatio, ) -> Result<Self, OutboxPollingOptionsError>
Trait Implementations§
Source§impl Clone for OutboxPollingOptions
impl Clone for OutboxPollingOptions
Source§fn clone(&self) -> OutboxPollingOptions
fn clone(&self) -> OutboxPollingOptions
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 moreSource§impl Debug for OutboxPollingOptions
impl Debug for OutboxPollingOptions
Source§impl PartialEq for OutboxPollingOptions
impl PartialEq for OutboxPollingOptions
impl StructuralPartialEq for OutboxPollingOptions
Auto Trait Implementations§
impl Freeze for OutboxPollingOptions
impl RefUnwindSafe for OutboxPollingOptions
impl Send for OutboxPollingOptions
impl Sync for OutboxPollingOptions
impl Unpin for OutboxPollingOptions
impl UnwindSafe for OutboxPollingOptions
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