Trait hftbacktest::types::Recorder

source ·
pub trait Recorder {
    type Error;

    // Required method
    fn record<MD, I>(&mut self, hbt: &mut I) -> Result<(), Self::Error>
       where I: Bot + BotTypedDepth<MD>,
             MD: MarketDepth;
}

Required Associated Types§

Required Methods§

source

fn record<MD, I>(&mut self, hbt: &mut I) -> Result<(), Self::Error>
where I: Bot + BotTypedDepth<MD>, MD: MarketDepth,

Object Safety§

This trait is not object safe.

Implementors§