bybit-rust-api 0.4.0

Complete Rust SDK for Bybit API V5 with all endpoints, comprehensive type safety and full test coverage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Private WebSocket channel implementations.
//!
//! These channels require authentication before subscribing.
//! Data structures match Bybit V5 private topic responses.

pub mod dcp;
pub mod execution;
pub mod greeks;
pub mod order;
pub mod position;
pub mod wallet;

pub use dcp::DcpData;
pub use execution::ExecutionData;
pub use greeks::GreeksData;
pub use order::OrderData;
pub use position::PositionData;
pub use wallet::WalletData;