pub struct SignalDeliveryConfig {
pub ready_timeout: Duration,
pub max_enqueue_attempts: u32,
pub initial_backoff: Duration,
pub max_backoff: Duration,
}Expand description
Bounded signal delivery retry policy supplied by engine configuration.
Fields§
§ready_timeout: DurationMaximum time to wait for a just-spawned process body to materialize.
max_enqueue_attempts: u32Maximum number of mailbox enqueue attempts after the ready gate.
initial_backoff: DurationInitial sleep between failed enqueue attempts.
max_backoff: DurationUpper bound for exponential backoff between enqueue attempts.
Implementations§
Trait Implementations§
Source§impl Clone for SignalDeliveryConfig
impl Clone for SignalDeliveryConfig
Source§fn clone(&self) -> SignalDeliveryConfig
fn clone(&self) -> SignalDeliveryConfig
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 moreimpl Copy for SignalDeliveryConfig
Source§impl Debug for SignalDeliveryConfig
impl Debug for SignalDeliveryConfig
Source§impl Default for SignalDeliveryConfig
impl Default for SignalDeliveryConfig
impl Eq for SignalDeliveryConfig
Source§impl PartialEq for SignalDeliveryConfig
impl PartialEq for SignalDeliveryConfig
impl StructuralPartialEq for SignalDeliveryConfig
Auto Trait Implementations§
impl Freeze for SignalDeliveryConfig
impl RefUnwindSafe for SignalDeliveryConfig
impl Send for SignalDeliveryConfig
impl Sync for SignalDeliveryConfig
impl Unpin for SignalDeliveryConfig
impl UnsafeUnpin for SignalDeliveryConfig
impl UnwindSafe for SignalDeliveryConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.