pub struct MarketEventCache { /* private fields */ }Implementations§
Source§impl MarketEventCache
impl MarketEventCache
pub fn new() -> Self
pub fn apply_batch( &self, updates: &[MarketEventUpdate], ) -> MarketEventApplyOutcome
pub fn market_state(&self, market_id: u32) -> Option<MarketStateSnapshot>
pub fn market_states(&self) -> Vec<MarketStateSnapshot>
pub fn market_trade_date( &self, market_id: u32, ) -> Option<MarketTradeDateSnapshot>
Trait Implementations§
Source§impl Default for MarketEventCache
impl Default for MarketEventCache
Source§fn default() -> MarketEventCache
fn default() -> MarketEventCache
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for MarketEventCache
impl Freeze for MarketEventCache
impl Send for MarketEventCache
impl Sync for MarketEventCache
impl Unpin for MarketEventCache
impl UnsafeUnpin for MarketEventCache
impl UnwindSafe for MarketEventCache
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more