nyquest-backend-reqwest 0.2.1

reqwest backend for nyquest HTTP client library
Documentation
1
2
3
4
5
6
7
8
9
10
use std::time::Duration;

use nyquest_interface::client::CachingBehavior;

#[derive(Debug, Clone)]
pub(crate) struct WasmOptions {
    pub(crate) request_timeout: Option<Duration>,
    pub(crate) caching_behavior: CachingBehavior,
    pub(crate) use_cookies: bool,
}