pub trait HandlerOptions: Default + Clone + Debug {
    type OptionItem: HandlerOption<Options = Self>;

    // Required method
    fn update(&mut self, option: Self::OptionItem);
}
Expand description

Set of HandlerOption s

Required Associated Types§

source

type OptionItem: HandlerOption<Options = Self>

The element of this set

Required Methods§

source

fn update(&mut self, option: Self::OptionItem)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl HandlerOptions for BinanceOptions

Available on crate feature binance only.
source§

impl HandlerOptions for BitFlyerOptions

Available on crate feature bitflyer only.
source§

impl HandlerOptions for BybitOptions

Available on crate feature bybit only.
source§

impl HandlerOptions for CoincheckOptions

Available on crate feature coincheck only.