pub struct SeriesTree_Indicators {
pub puell_multiple: BpsRatioPattern2,
pub nvt: BpsRatioPattern2,
pub gini: BpsPercentRatioPattern3,
pub rhodl_ratio: BpsRatioPattern2,
pub thermo_cap_multiple: BpsRatioPattern2,
pub coindays_destroyed_supply_adjusted: SeriesPattern1<StoredF32>,
pub coinyears_destroyed_supply_adjusted: SeriesPattern1<StoredF32>,
pub dormancy: SeriesTree_Indicators_Dormancy,
pub stock_to_flow: SeriesPattern1<StoredF32>,
pub seller_exhaustion: SeriesPattern1<StoredF32>,
pub realized_envelope: SeriesTree_Indicators_RealizedEnvelope,
}Expand description
Series tree node.
Fields§
§puell_multiple: BpsRatioPattern2§nvt: BpsRatioPattern2§gini: BpsPercentRatioPattern3§rhodl_ratio: BpsRatioPattern2§thermo_cap_multiple: BpsRatioPattern2§coindays_destroyed_supply_adjusted: SeriesPattern1<StoredF32>§coinyears_destroyed_supply_adjusted: SeriesPattern1<StoredF32>§dormancy: SeriesTree_Indicators_Dormancy§stock_to_flow: SeriesPattern1<StoredF32>§seller_exhaustion: SeriesPattern1<StoredF32>§realized_envelope: SeriesTree_Indicators_RealizedEnvelopeImplementations§
Source§impl SeriesTree_Indicators
impl SeriesTree_Indicators
pub fn new(client: Arc<BrkClientBase>, base_path: String) -> Self
Auto Trait Implementations§
impl Freeze for SeriesTree_Indicators
impl !RefUnwindSafe for SeriesTree_Indicators
impl Send for SeriesTree_Indicators
impl Sync for SeriesTree_Indicators
impl Unpin for SeriesTree_Indicators
impl UnsafeUnpin for SeriesTree_Indicators
impl !UnwindSafe for SeriesTree_Indicators
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