pub struct MetricsTree_Market {
pub ath: MetricsTree_Market_Ath,
pub lookback: MetricsTree_Market_Lookback,
pub returns: MetricsTree_Market_Returns,
pub volatility: MetricsTree_Market_Volatility,
pub range: MetricsTree_Market_Range,
pub moving_average: MetricsTree_Market_MovingAverage,
pub dca: MetricsTree_Market_Dca,
pub indicators: MetricsTree_Market_Indicators,
}Expand description
Metrics tree node.
Fields§
§ath: MetricsTree_Market_Ath§lookback: MetricsTree_Market_Lookback§returns: MetricsTree_Market_Returns§volatility: MetricsTree_Market_Volatility§range: MetricsTree_Market_Range§moving_average: MetricsTree_Market_MovingAverage§dca: MetricsTree_Market_Dca§indicators: MetricsTree_Market_IndicatorsImplementations§
Source§impl MetricsTree_Market
impl MetricsTree_Market
pub fn new(client: Arc<BrkClientBase>, base_path: String) -> Self
Auto Trait Implementations§
impl Freeze for MetricsTree_Market
impl RefUnwindSafe for MetricsTree_Market
impl Send for MetricsTree_Market
impl Sync for MetricsTree_Market
impl Unpin for MetricsTree_Market
impl UnwindSafe for MetricsTree_Market
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
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