pub struct HttpDefaults {
pub timeout_ms: u64,
pub follow_location: bool,
}Expand description
Batch-level HTTP defaults (per-entry [Options] in artifacts override them
— clone-then-override, verified TECH-SPEC §5).
Fields§
§timeout_ms: u64Per-request timeout in milliseconds (clamped default — ADR-0007).
follow_location: boolFollow redirects.
Trait Implementations§
Source§impl Clone for HttpDefaults
impl Clone for HttpDefaults
Source§fn clone(&self) -> HttpDefaults
fn clone(&self) -> HttpDefaults
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 moreimpl Copy for HttpDefaults
Source§impl Debug for HttpDefaults
impl Debug for HttpDefaults
Auto Trait Implementations§
impl Freeze for HttpDefaults
impl RefUnwindSafe for HttpDefaults
impl Send for HttpDefaults
impl Sync for HttpDefaults
impl Unpin for HttpDefaults
impl UnsafeUnpin for HttpDefaults
impl UnwindSafe for HttpDefaults
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