wtx 0.45.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A flexible client API framework for writing asynchronous, fast, organizable, scalable and maintainable applications.

#[macro_use]
mod macros;

mod api;
mod client_api_framework_error;
pub mod misc;
pub mod network;
pub mod pkg;
#[cfg(test)]
mod tests;

pub use api::{Api, ApiId};
pub use client_api_framework_error::ClientApiFrameworkError;