pub struct RetryNode {
pub id: String,
pub target_node_id: String,
pub max_retries: usize,
pub initial_delay_ms: u64,
pub backoff_multiplier: f64,
}Fields§
§id: String§target_node_id: String§max_retries: usize§initial_delay_ms: u64§backoff_multiplier: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RetryNode
impl RefUnwindSafe for RetryNode
impl Send for RetryNode
impl Sync for RetryNode
impl Unpin for RetryNode
impl UnwindSafe for RetryNode
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