pub struct TimeoutSupport {
pub resolve: bool,
pub connect: bool,
pub first_byte: bool,
pub between_bytes: bool,
}Fields§
§resolve: boolWhether Timeouts::resolve is enforced. Honestly false on
every ambient backend: wasi:http and fetch do the resolving
inside the host, so there is no moment for a client to bound.
connect: bool§first_byte: bool§between_bytes: boolTrait Implementations§
Source§impl Clone for TimeoutSupport
impl Clone for TimeoutSupport
Source§fn clone(&self) -> TimeoutSupport
fn clone(&self) -> TimeoutSupport
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 TimeoutSupport
Source§impl Debug for TimeoutSupport
impl Debug for TimeoutSupport
Source§impl Default for TimeoutSupport
impl Default for TimeoutSupport
Source§fn default() -> TimeoutSupport
fn default() -> TimeoutSupport
Returns the “default value” for a type. Read more
impl Eq for TimeoutSupport
Source§impl PartialEq for TimeoutSupport
impl PartialEq for TimeoutSupport
impl StructuralPartialEq for TimeoutSupport
Auto Trait Implementations§
impl Freeze for TimeoutSupport
impl RefUnwindSafe for TimeoutSupport
impl Send for TimeoutSupport
impl Sync for TimeoutSupport
impl Unpin for TimeoutSupport
impl UnsafeUnpin for TimeoutSupport
impl UnwindSafe for TimeoutSupport
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