wtx 0.28.0

A collection of different transport implementations and related tools focused primarily on web technologies.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Groups different dependencies that transform different types of data.

#[macro_use]
mod macros;

mod data_transformation_error;
pub mod dnsn;
pub mod format;

pub use data_transformation_error::DataTransformationError;

/// Identifier used to track the number of issued requests.
pub type Id = usize;