Skip to main content

tf_rust_engineio/asynchronous/
mod.rs

1pub mod async_transports;
2pub mod transport;
3
4mod async_socket;
5#[cfg(feature = "async-callbacks")]
6mod callback;
7#[cfg(feature = "async")]
8pub mod client;
9mod generator;
10
11#[cfg(feature = "async")]
12pub use client::Client;
13
14#[cfg(feature = "async")]
15pub use client::ClientBuilder;