Struct tokio_binance::GeneralClient[][src]

pub struct GeneralClient { /* fields omitted */ }

Client for dealing with general exchange information

Implementations

impl GeneralClient[src]

pub fn connect<U: Into<String>>(url: U) -> Result<Self>[src]

Creates new client instance

Example

use tokio_binance::{GeneralClient, BINANCE_US_URL};
 
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = GeneralClient::connect(BINANCE_US_URL)?;
    Ok(())
}

pub fn ping(&self) -> ParamBuilder<'_, '_, PingParams>[src]

Test connectivity to the Rest API.

Example

use serde_json::Value;
 
let response = client
    .ping()
    .json::<Value>()
    .await?;

pub fn get_server_time(&self) -> ParamBuilder<'_, '_, TimeParams>[src]

Test connectivity to the Rest API and get the current server time.

Example

use serde_json::Value;
 
let response = client
    .get_server_time()
    .json::<Value>()
    .await?;

pub fn get_exchange_info(&self) -> ParamBuilder<'_, '_, ExchangeInfoParams>[src]

Current exchange trading rules and symbol information.

Example

use serde_json::Value;
 
let response = client
    .get_exchange_info()
    .json::<Value>()
    .await?;

Trait Implementations

impl Clone for GeneralClient[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,