Struct tikv_kv::perf_context::PerfStatisticsFields [−][src]
Fields
user_key_comparison_count: usize
block_cache_hit_count: usize
block_read_count: usize
block_read_byte: usize
block_read_time: usize
block_cache_index_hit_count: usize
index_block_read_count: usize
block_cache_filter_hit_count: usize
filter_block_read_count: usize
block_checksum_time: usize
block_decompress_time: usize
get_read_bytes: usize
iter_read_bytes: usize
internal_key_skipped_count: usize
internal_delete_skipped_count: usize
internal_recent_skipped_count: usize
get_snapshot_time: usize
get_from_memtable_time: usize
get_from_memtable_count: usize
get_post_process_time: usize
get_from_output_files_time: usize
seek_on_memtable_time: usize
seek_on_memtable_count: usize
next_on_memtable_count: usize
prev_on_memtable_count: usize
seek_child_seek_time: usize
seek_child_seek_count: usize
seek_min_heap_time: usize
seek_max_heap_time: usize
seek_internal_seek_time: usize
db_mutex_lock_nanos: usize
db_condition_wait_nanos: usize
read_index_block_nanos: usize
read_filter_block_nanos: usize
new_table_block_iter_nanos: usize
new_table_iterator_nanos: usize
block_seek_nanos: usize
find_table_nanos: usize
bloom_memtable_hit_count: usize
bloom_memtable_miss_count: usize
bloom_sst_hit_count: usize
bloom_sst_miss_count: usize
get_cpu_nanos: usize
iter_next_cpu_nanos: usize
iter_prev_cpu_nanos: usize
iter_seek_cpu_nanos: usize
encrypt_data_nanos: usize
decrypt_data_nanos: usize
Trait Implementations
impl Add<PerfStatisticsFields> for PerfStatisticsFields
[src]
type Output = PerfStatisticsFields
The resulting type after applying the +
operator.
fn add(self, rhs: PerfStatisticsFields) -> PerfStatisticsFields
[src]
impl AddAssign<PerfStatisticsFields> for PerfStatisticsFields
[src]
fn add_assign(&mut self, rhs: PerfStatisticsFields)
[src]
impl Clone for PerfStatisticsFields
[src]
fn clone(&self) -> PerfStatisticsFields
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for PerfStatisticsFields
[src]
impl Debug for PerfStatisticsFields
[src]
impl Default for PerfStatisticsFields
[src]
fn default() -> PerfStatisticsFields
[src]
impl KV for PerfStatisticsFields
[src]
fn serialize(&self, _record: &Record<'_>, ser: &mut dyn Serializer) -> Result
[src]
impl Sub<PerfStatisticsFields> for PerfStatisticsFields
[src]
type Output = PerfStatisticsFields
The resulting type after applying the -
operator.
fn sub(self, rhs: PerfStatisticsFields) -> PerfStatisticsFields
[src]
impl SubAssign<PerfStatisticsFields> for PerfStatisticsFields
[src]
fn sub_assign(&mut self, rhs: PerfStatisticsFields)
[src]
Auto Trait Implementations
impl RefUnwindSafe for PerfStatisticsFields
impl Send for PerfStatisticsFields
impl Sync for PerfStatisticsFields
impl Unpin for PerfStatisticsFields
impl UnwindSafe for PerfStatisticsFields
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<V, W> ConvertFrom<W> for V where
W: ConvertTo<V>,
[src]
W: ConvertTo<V>,
pub fn convert_from(ctx: &mut EvalContext, from: W) -> Result<V, Error>
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> Sealed<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> SendSyncRefUnwindSafeKV for T where
T: KV + Send + Sync + RefUnwindSafe + ?Sized,
[src]
T: KV + Send + Sync + RefUnwindSafe + ?Sized,
impl<T> SendSyncUnwindSafe for T where
T: Send + Sync + UnwindSafe + ?Sized,
[src]
T: Send + Sync + UnwindSafe + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,