pub struct WeightedFeatures {
pub order_book_pressure: f64,
pub weighted_imbalance: f64,
}Expand description
Batch results for weighted ML features calculated via SIMD.
Fields§
§order_book_pressure: f64The order book pressure.
weighted_imbalance: f64The weighted imbalance.
Trait Implementations§
Source§impl Clone for WeightedFeatures
impl Clone for WeightedFeatures
Source§fn clone(&self) -> WeightedFeatures
fn clone(&self) -> WeightedFeatures
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 moreSource§impl Debug for WeightedFeatures
impl Debug for WeightedFeatures
impl Copy for WeightedFeatures
Auto Trait Implementations§
impl Freeze for WeightedFeatures
impl RefUnwindSafe for WeightedFeatures
impl Send for WeightedFeatures
impl Sync for WeightedFeatures
impl Unpin for WeightedFeatures
impl UnwindSafe for WeightedFeatures
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