pub struct HttpBootstrapConfigDto {
pub endpoints: Vec<EndpointConfigDto>,
pub timeout_seconds: ConfigValue<u64>,
pub max_retries: ConfigValue<u32>,
pub retry_delay_ms: ConfigValue<u64>,
pub max_pages: Option<ConfigValue<u64>>,
}Expand description
Top-level configuration DTO for the HTTP bootstrap provider.
Fields§
§endpoints: Vec<EndpointConfigDto>Endpoint configurations.
timeout_seconds: ConfigValue<u64>Timeout in seconds.
max_retries: ConfigValue<u32>Maximum retries.
retry_delay_ms: ConfigValue<u64>Retry delay in milliseconds.
max_pages: Option<ConfigValue<u64>>Maximum number of pages to fetch per endpoint (default: 10,000).
Trait Implementations§
Source§impl Clone for HttpBootstrapConfigDto
impl Clone for HttpBootstrapConfigDto
Source§fn clone(&self) -> HttpBootstrapConfigDto
fn clone(&self) -> HttpBootstrapConfigDto
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 HttpBootstrapConfigDto
impl Debug for HttpBootstrapConfigDto
Source§impl<'de> Deserialize<'de> for HttpBootstrapConfigDto
impl<'de> Deserialize<'de> for HttpBootstrapConfigDto
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 HttpBootstrapConfigDto
impl PartialEq for HttpBootstrapConfigDto
Source§fn eq(&self, other: &HttpBootstrapConfigDto) -> bool
fn eq(&self, other: &HttpBootstrapConfigDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HttpBootstrapConfigDto
impl Serialize for HttpBootstrapConfigDto
impl StructuralPartialEq for HttpBootstrapConfigDto
Auto Trait Implementations§
impl Freeze for HttpBootstrapConfigDto
impl RefUnwindSafe for HttpBootstrapConfigDto
impl Send for HttpBootstrapConfigDto
impl Sync for HttpBootstrapConfigDto
impl Unpin for HttpBootstrapConfigDto
impl UnsafeUnpin for HttpBootstrapConfigDto
impl UnwindSafe for HttpBootstrapConfigDto
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