rust_socketio 0.4.1

An implementation of a socketio client written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
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;
mod client;