[−][src]Struct crypto_rest_client::HuobiFutureRestClient
Huobi Future market.
- REST API doc: https://huobiapi.github.io/docs/dm/v1/en/
- Trading at: https://futures.huobi.com/en-us/contract/exchange/
Implementations
impl HuobiFutureRestClient[src]
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self[src]
pub fn fetch_trades(symbol: &str) -> Result<String, Error>[src]
Get the most recent trades.
Equivalent to /market/history/trade with size=2000
For example: https://api.hbdm.com/market/history/trade?symbol=BTC_CQ&size=2000
impl HuobiFutureRestClient[src]
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String, Error>[src]
Get the latest Level2 orderbook snapshot.
Top 150 bids and asks (aggregated) are returned.
For example: https://api.hbdm.com/market/depth?symbol=BTC_CQ&type=step0
Auto Trait Implementations
impl RefUnwindSafe for HuobiFutureRestClient[src]
impl Send for HuobiFutureRestClient[src]
impl Sync for HuobiFutureRestClient[src]
impl Unpin for HuobiFutureRestClient[src]
impl UnwindSafe for HuobiFutureRestClient[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,