pub struct ResolvedTransport {
pub timeout: Duration,
pub follow_redirects: bool,
pub max_redirect_hops: usize,
pub retry_max_attempts: usize,
pub retry_backoff: Duration,
pub retry_on_status: Vec<u16>,
pub compression: bool,
pub tls_min_version: Option<Version>,
pub proxy_url: Option<String>,
pub max_response_bytes: usize,
}Fields§
§timeout: Duration§follow_redirects: bool§max_redirect_hops: usize§retry_max_attempts: usize§retry_backoff: Duration§retry_on_status: Vec<u16>§compression: bool§tls_min_version: Option<Version>§proxy_url: Option<String>§max_response_bytes: usizeTrait Implementations§
Source§impl Clone for ResolvedTransport
impl Clone for ResolvedTransport
Source§fn clone(&self) -> ResolvedTransport
fn clone(&self) -> ResolvedTransport
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 moreAuto Trait Implementations§
impl Freeze for ResolvedTransport
impl RefUnwindSafe for ResolvedTransport
impl Send for ResolvedTransport
impl Sync for ResolvedTransport
impl Unpin for ResolvedTransport
impl UnsafeUnpin for ResolvedTransport
impl UnwindSafe for ResolvedTransport
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