[−][src]Struct crypto_rest_client::BinanceFutureRestClient
Binance Coin-margined Future market.
- REST API doc: https://binance-docs.github.io/apidocs/delivery/en/
- Trading at: https://www.binance.com/en/delivery/btcusd_quarter
Implementations
impl BinanceFutureRestClient[src]
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self[src]
pub fn fetch_agg_trades(
symbol: &str,
from_id: Option<u64>,
start_time: Option<u64>,
end_time: Option<u64>
) -> Result<String, Error>[src]
symbol: &str,
from_id: Option<u64>,
start_time: Option<u64>,
end_time: Option<u64>
) -> Result<String, Error>
Get compressed, aggregate trades.
Equivalent to /dapi/v1/aggTrades with limit=1000
For example: https://dapi.binance.com/dapi/v1/aggTrades?symbol=BTCUSD_210625&limit=1000
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String, Error>[src]
Get a Level2 snapshot of orderbook.
Equivalent to /dapi/v1/depth with limit=1000
For example: https://dapi.binance.com/dapi/v1/depth?symbol=BTCUSD_210625&limit=1000
Auto Trait Implementations
impl RefUnwindSafe for BinanceFutureRestClient[src]
impl Send for BinanceFutureRestClient[src]
impl Sync for BinanceFutureRestClient[src]
impl Unpin for BinanceFutureRestClient[src]
impl UnwindSafe for BinanceFutureRestClient[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>,