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

If set, information that never changes during execution will be skipped.

This corresponds to the g character.

If set, merged information about arenas will be skipped.

This corresponds to the m character.

If set, information about individual arenas will be skipped.

This corresponds to the a character.

If set, information about individual size classes for bins will be skipped.

This corresponds to the b character.

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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Options
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Options

impl Sync for Options