pub struct MetricsTree_Transactions_Volume {
pub sent_sum: BitcoinDollarsSatsPattern4,
pub received_sum: BitcoinDollarsSatsPattern4,
pub annualized_volume: BitcoinDollarsSatsPattern5,
pub tx_per_sec: MetricPattern4<StoredF32>,
pub outputs_per_sec: MetricPattern4<StoredF32>,
pub inputs_per_sec: MetricPattern4<StoredF32>,
}Expand description
Metrics tree node.
Fields§
§sent_sum: BitcoinDollarsSatsPattern4§received_sum: BitcoinDollarsSatsPattern4§annualized_volume: BitcoinDollarsSatsPattern5§tx_per_sec: MetricPattern4<StoredF32>§outputs_per_sec: MetricPattern4<StoredF32>§inputs_per_sec: MetricPattern4<StoredF32>Implementations§
Source§impl MetricsTree_Transactions_Volume
impl MetricsTree_Transactions_Volume
pub fn new(client: Arc<BrkClientBase>, base_path: String) -> Self
Auto Trait Implementations§
impl Freeze for MetricsTree_Transactions_Volume
impl RefUnwindSafe for MetricsTree_Transactions_Volume
impl Send for MetricsTree_Transactions_Volume
impl Sync for MetricsTree_Transactions_Volume
impl Unpin for MetricsTree_Transactions_Volume
impl UnwindSafe for MetricsTree_Transactions_Volume
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