pub enum RetryBuilderError {
IntegerOutOfRange {
value: i128,
},
DurationOutOfRange {
field: &'static str,
duration: Duration,
},
InvalidExponentialFactor {
factor: f64,
},
InvalidJitterFactor {
factor: f64,
},
InvalidClampRange {
min_delay: Duration,
max_delay: Duration,
},
}Expand description
Validation errors produced when flattening high-level retry builders into raw WIT types.
Variants§
IntegerOutOfRange
DurationOutOfRange
InvalidExponentialFactor
InvalidJitterFactor
InvalidClampRange
Trait Implementations§
Source§impl Clone for RetryBuilderError
impl Clone for RetryBuilderError
Source§fn clone(&self) -> RetryBuilderError
fn clone(&self) -> RetryBuilderError
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 RetryBuilderError
impl Debug for RetryBuilderError
Source§impl Display for RetryBuilderError
impl Display for RetryBuilderError
Source§impl Error for RetryBuilderError
impl Error for RetryBuilderError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for RetryBuilderError
impl PartialEq for RetryBuilderError
impl StructuralPartialEq for RetryBuilderError
Auto Trait Implementations§
impl Freeze for RetryBuilderError
impl RefUnwindSafe for RetryBuilderError
impl Send for RetryBuilderError
impl Sync for RetryBuilderError
impl Unpin for RetryBuilderError
impl UnsafeUnpin for RetryBuilderError
impl UnwindSafe for RetryBuilderError
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