pub struct BankFromArchiveTimings {
pub rebuild_bank_from_snapshots_us: u64,
pub full_snapshot_untar_us: u64,
pub incremental_snapshot_untar_us: u64,
pub verify_snapshot_bank_us: u64,
}Fields§
§rebuild_bank_from_snapshots_us: u64§full_snapshot_untar_us: u64§incremental_snapshot_untar_us: u64§verify_snapshot_bank_us: u64Trait Implementations§
Source§impl Debug for BankFromArchiveTimings
impl Debug for BankFromArchiveTimings
Source§impl Default for BankFromArchiveTimings
impl Default for BankFromArchiveTimings
Source§fn default() -> BankFromArchiveTimings
fn default() -> BankFromArchiveTimings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BankFromArchiveTimings
impl RefUnwindSafe for BankFromArchiveTimings
impl Send for BankFromArchiveTimings
impl Sync for BankFromArchiveTimings
impl Unpin for BankFromArchiveTimings
impl UnwindSafe for BankFromArchiveTimings
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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