fyers 0.2.1

Idiomatic async Rust client for the Fyers trading API.
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

/// Returned on successfully placing an order.
#[derive(Debug, Deserialize, Clone, PartialEq, Eq)]
pub struct Order {
    /// Order ID
    pub id: String,
}