pub trait GetOptions<O: HandlerOptions> {
// Required methods
fn default_options(&self) -> &O;
fn default_options_mut(&mut self) -> &mut O;
// Provided method
fn is_authenticated(&self) -> bool { ... }
}Required Methods§
fn default_options(&self) -> &O
fn default_options_mut(&mut self) -> &mut O
Provided Methods§
fn is_authenticated(&self) -> bool
Implementors§
impl GetOptions<BinanceOptions> for Client
Available on crate feature
binance only.impl GetOptions<BybitOptions> for Client
Available on crate feature
bybit only.impl GetOptions<MexcOptions> for Client
Available on crate feature
mexc only.