use crate::error::Result;
domain_handle! {
pub struct FuturesContract { symbol, symbol }
}
impl FuturesContract {
pub async fn quote(&self) -> Result<crate::models::futures::FuturesQuote> {
fetch_via!(
self,
symbol,
FUTURES,
fetch_futures_quote,
crate::models::futures::FuturesQuote
)
}
}