1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! # fyers
//!
//! An idiomatic, strongly-typed, async Rust client for the Fyers Trading API.
//!
//! ## Overview
//!
//! This crate provides a type-safe interface to the Fyers REST API,
//! modeling requests and responses as Rust types rather than exposing
//! raw JSON values.
//!
//! ## Example
//!
//! ```no_run
//! use fyers::{Fyers, FyersError};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), FyersError> {
//! let fyers = Fyers::new("CLIENT_ID", "ACCESS_TOKEN");
//!
//! let profile = fyers.profile().await?;
//! println!("{profile:?}");
//!
//! Ok(())
//! }
//! ```
pub use Fyers;
pub use FyersError;
// Profile
pub use Profile;
// History
pub use ;
// Orders
pub use ;
// Positions
pub use ExitPositionResult;
pub use ist_datetime;