//! Forex rates from Bank of China (BOC).
usecrate::client::AkShareClient;usecrate::error::Result;usecrate::types::ForexRate;implAkShareClient{/// Fetch forex rates (BOC rates).
////// The Eastmoney datacenter report `RPT_FE_QUOTATION_BOCCN` has been retired.
/// Falls back to Sina forex API which provides the same data.
pub async fnforex_boc_rates(&self)->Result<Vec<ForexRate>>{self.forex_sina_rates().await
}}