rust_engineio 0.6.0

An implementation of a engineio client written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod async_transports;
pub mod transport;

pub(self) mod async_socket;
#[cfg(feature = "async-callbacks")]
mod callback;
#[cfg(feature = "async")]
pub mod client;
mod generator;

#[cfg(feature = "async")]
pub use client::Client;

#[cfg(feature = "async")]
pub use client::ClientBuilder;