pub struct FeatureVector {
pub timestamp: DateTime<Utc>,
pub values: Vec<f64>,
}Expand description
Feature vector extracted from market data
Fields§
§timestamp: DateTime<Utc>Timestamp of the feature vector
values: Vec<f64>Feature values in the order specified by feature_names()
Trait Implementations§
Source§impl Clone for FeatureVector
impl Clone for FeatureVector
Source§fn clone(&self) -> FeatureVector
fn clone(&self) -> FeatureVector
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FeatureVector
impl RefUnwindSafe for FeatureVector
impl Send for FeatureVector
impl Sync for FeatureVector
impl Unpin for FeatureVector
impl UnwindSafe for FeatureVector
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