Trait bybit::api::Bybit

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

Required Methods§

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§