usestd::time::Duration;/// The concrete type behind a `wasi:http/types.request-options` resource.
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq)]pubstructRequestOptions{/// How long to wait for a connection to be established.
pubconnect_timeout:Option<Duration>,
/// How long to wait for the first byte of the response body.
pubfirst_byte_timeout:Option<Duration>,
/// How long to wait between frames of the response body.
pubbetween_bytes_timeout:Option<Duration>,
}