patisson-bybit-sdk 0.2.0

Unofficial Rust SDK for the Bybit exchange API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod config;
mod error;
mod handle;
mod incoming_message;
mod messages;
mod outgoing_message;
mod state;
mod stream;

pub use config::{Config, DEFAULT_PING_INTERVAL, DEFAULT_PONG_TIMEOUT};
pub use error::Error;
pub use handle::Handle;
pub use incoming_message::*;
pub use messages::{Command, DisconnectReason, Event};
pub use outgoing_message::*;
pub use stream::Stream;