nyquest-backend-winhttp 0.1.0

WinHTTP backend for nyquest
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Raw WinHTTP handle wrappers.
//!
//! This module provides safe wrappers around WinHTTP handles (HINTERNET),
//! following the pattern from curl_ng for raw handle management.

mod connection;
mod request;
mod session;

pub(crate) use connection::ConnectionHandle;
pub(crate) use request::RequestHandle;
pub(crate) use session::SessionHandle;