pub struct StacApiRetries {
pub exponential_backoff_factor: f64,
pub initial_delay_ms: i64,
pub number_of_retries: i32,
}Fields§
§exponential_backoff_factor: f64§initial_delay_ms: i64§number_of_retries: i32Implementations§
Trait Implementations§
Source§impl Clone for StacApiRetries
impl Clone for StacApiRetries
Source§fn clone(&self) -> StacApiRetries
fn clone(&self) -> StacApiRetries
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 moreSource§impl Debug for StacApiRetries
impl Debug for StacApiRetries
Source§impl Default for StacApiRetries
impl Default for StacApiRetries
Source§fn default() -> StacApiRetries
fn default() -> StacApiRetries
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StacApiRetries
impl<'de> Deserialize<'de> for StacApiRetries
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
Source§impl PartialEq for StacApiRetries
impl PartialEq for StacApiRetries
Source§fn eq(&self, other: &StacApiRetries) -> bool
fn eq(&self, other: &StacApiRetries) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StacApiRetries
impl Serialize for StacApiRetries
impl StructuralPartialEq for StacApiRetries
Auto Trait Implementations§
impl Freeze for StacApiRetries
impl RefUnwindSafe for StacApiRetries
impl Send for StacApiRetries
impl Sync for StacApiRetries
impl Unpin for StacApiRetries
impl UnsafeUnpin for StacApiRetries
impl UnwindSafe for StacApiRetries
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