mitrid_core 0.9.4

Core library of the Mitrid framework
1
2
3
4
5
6
7
8
9
10
11
12
//! # Client
//!
//! `client` is the module providing the network client types and traits.

/// Type used to represent the client behavior on error responses.
pub mod on_error;

/// Trait implemented by network clients.
pub mod client;

pub use self::on_error::OnError;
pub use self::client::Client;