akshare 0.1.1

100% pure Rust implementation of akshare — unified access to Chinese and global financial market data APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Fund fee data from Eastmoney.

use crate::client::AkShareClient;
use crate::error::{Error, Result};

impl AkShareClient {
    /// Fetch fund fee data from Eastmoney.
    pub async fn fund_fee_em(&self, _limit: usize) -> Result<Vec<serde_json::Value>> {
        Err(Error::decode("fund_fee_em not yet fully implemented"))
    }
}