pub struct HftPoolStats {
pub order_pool_size: usize,
pub trade_pool_size: usize,
pub buffer_pool_size: usize,
}Expand description
Statistics for HFT pools
Fields§
§order_pool_size: usizeCurrent number of orders available in the order pool
trade_pool_size: usizeCurrent number of trades available in the trade pool
buffer_pool_size: usizeCurrent number of buffers available in the buffer pool
Trait Implementations§
Source§impl Clone for HftPoolStats
impl Clone for HftPoolStats
Source§fn clone(&self) -> HftPoolStats
fn clone(&self) -> HftPoolStats
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HftPoolStats
impl RefUnwindSafe for HftPoolStats
impl Send for HftPoolStats
impl Sync for HftPoolStats
impl Unpin for HftPoolStats
impl UnwindSafe for HftPoolStats
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