struct OreProfileTotals {Show 27 fields
veins: AtomicU64,
placed_veins: AtomicU64,
placed_blocks: AtomicU64,
config_size_total: AtomicU64,
candidate_positions: AtomicU64,
unique_positions: AtomicU64,
write_allowed_positions: AtomicU64,
target_reads: AtomicU64,
neighbor_reads: AtomicU64,
section_read_attempts: AtomicU64,
section_write_attempts: AtomicU64,
section_read_contentions: AtomicU64,
section_write_contentions: AtomicU64,
chunk_cache_misses: AtomicU64,
chunk_status_upgrades: AtomicU64,
writes: AtomicU64,
candidate_time_nanos: AtomicU64,
batch_apply_time_nanos: AtomicU64,
read_time_nanos: AtomicU64,
write_time_nanos: AtomicU64,
read_contention_wait_time_nanos: AtomicU64,
write_contention_wait_time_nanos: AtomicU64,
elapsed_nanos: AtomicU64,
unique_read_sections: AtomicU64,
unique_write_sections: AtomicU64,
max_unique_read_sections: AtomicU64,
max_unique_write_sections: AtomicU64,
}Fields§
§veins: AtomicU64§placed_veins: AtomicU64§placed_blocks: AtomicU64§config_size_total: AtomicU64§candidate_positions: AtomicU64§unique_positions: AtomicU64§write_allowed_positions: AtomicU64§target_reads: AtomicU64§neighbor_reads: AtomicU64§section_read_attempts: AtomicU64§section_write_attempts: AtomicU64§section_read_contentions: AtomicU64§section_write_contentions: AtomicU64§chunk_cache_misses: AtomicU64§chunk_status_upgrades: AtomicU64§writes: AtomicU64§candidate_time_nanos: AtomicU64§batch_apply_time_nanos: AtomicU64§read_time_nanos: AtomicU64§write_time_nanos: AtomicU64§read_contention_wait_time_nanos: AtomicU64§write_contention_wait_time_nanos: AtomicU64§elapsed_nanos: AtomicU64§unique_read_sections: AtomicU64§unique_write_sections: AtomicU64§max_unique_read_sections: AtomicU64§max_unique_write_sections: AtomicU64Implementations§
Source§impl OreProfileTotals
impl OreProfileTotals
const fn new() -> Self
fn publish(&self, stats: OreFeatureStats, placed: u64)
fn log_snapshot(&self, veins: u64)
Auto Trait Implementations§
impl !Freeze for OreProfileTotals
impl RefUnwindSafe for OreProfileTotals
impl Send for OreProfileTotals
impl Sync for OreProfileTotals
impl Unpin for OreProfileTotals
impl UnsafeUnpin for OreProfileTotals
impl UnwindSafe for OreProfileTotals
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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 moreWraps this value in an
Arc<SyncMutex<>>