pub trait BlockHistoryState {
// Required method
fn apply_update(
self,
block_history_entry: &BlockHistoryEntry,
market_state_config: &MarketStateConfig,
) -> Self;
}
Required Methods§
fn apply_update( self, block_history_entry: &BlockHistoryEntry, market_state_config: &MarketStateConfig, ) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.