fyers-rs 0.0.1

Idiomatic async Rust client for the Fyers API v3 broker APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! WebSocket service accessors and manager types.
//!
//! Data, order, and TBT/depth sockets expose async managers for documented
//! connect, send, receive, ping, and close behavior. Frame parsing is delegated
//! to typed protocol models in [`crate::models::ws`].

pub mod data;
pub mod data_protocol;
pub mod data_symbols;
pub mod manager;
pub mod order;
pub mod protocol;
pub mod tbt;

pub use data::{DataSocketConnection, DataSocketService, LiveDataSocketConnection};
pub use manager::{LiveWebSocket, ManagedSocket, ReconnectPolicy};
pub use order::{LiveOrderSocketConnection, OrderSocketConnection, OrderSocketService};
pub use tbt::{LiveTbtSocketConnection, TbtSocketConnection, TbtSocketService};