Trait binance::api::Binance

source ·
pub trait Binance {
    // Required methods
    fn new(api_key: Option<String>, secret_key: Option<String>) -> Self;
    fn new_with_config(
        api_key: Option<String>,
        secret_key: Option<String>,
        config: &Config
    ) -> Self;
}

Required Methods§

source

fn new(api_key: Option<String>, secret_key: Option<String>) -> Self

source

fn new_with_config( api_key: Option<String>, secret_key: Option<String>, config: &Config ) -> Self

Object Safety§

This trait is not object safe.

Implementors§