Struct jemalloc_ctl::stats_print::Options
[−]
[src]
pub struct Options {
pub skip_constants: bool,
pub skip_merged_arenas: bool,
pub skip_per_arena: bool,
pub skip_bin_size_classes: bool,
pub skip_large_size_classes: bool,
// some fields omitted
}Statistics configuration.
All options default to false.
Fields
skip_constants: bool
If set, information that never changes during execution will be skipped.
This corresponds to the g character.
skip_merged_arenas: bool
If set, merged information about arenas will be skipped.
This corresponds to the m character.
skip_per_arena: bool
If set, information about individual arenas will be skipped.
This corresponds to the a character.
skip_bin_size_classes: bool
If set, information about individual size classes for bins will be skipped.
This corresponds to the b character.
skip_large_size_classes: bool
If set, information about individual size classes for large objects will be skipped.
This corresponds to the l character.
Trait Implementations
impl Copy for Options[src]
impl Clone for Options[src]
fn clone(&self) -> Options[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more