yfinance-rs 0.1.1

Ergonomic Rust client for Yahoo Finance, supporting historical prices, real-time streaming, options, fundamentals, and more.
Documentation
1
2
3
4
5
6
use serde::Deserialize;

#[derive(Deserialize, Clone, Copy)]
pub(crate) struct RawNumI64 {
    pub(crate) raw: Option<i64>,
}