tf-rust-socketio 0.7.0

A Socket.IO client implementation in Rust. Fork of rust_socketio with server-to-client ACK support, reconnect headers, and close reason enhancements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod builder;
mod raw_client;

pub use builder::ClientBuilder;
pub use builder::TransportType;
pub use client::Client;
pub use raw_client::RawClient;

/// Internal callback type
mod callback;
#[allow(clippy::module_inception)]
mod client;