pub struct Reliability {
pub retries: Option<i64>,
pub backoff_strategy: Option<Value>,
pub base_delay_ms: Option<i64>,
pub max_delay_ms: Option<i64>,
pub dead_letter_queue: Option<bool>,
}Fields§
§retries: Option<i64>§backoff_strategy: Option<Value>§base_delay_ms: Option<i64>§max_delay_ms: Option<i64>§dead_letter_queue: Option<bool>Trait Implementations§
Source§impl Clone for Reliability
impl Clone for Reliability
Source§fn clone(&self) -> Reliability
fn clone(&self) -> Reliability
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 Reliability
impl Debug for Reliability
Source§impl<'de> Deserialize<'de> for Reliability
impl<'de> Deserialize<'de> for Reliability
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Reliability
impl RefUnwindSafe for Reliability
impl Send for Reliability
impl Sync for Reliability
impl Unpin for Reliability
impl UnwindSafe for Reliability
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