Struct jemalloc_ctl::stats::Mapped [] [src]

pub struct Mapped(_);

A type providing access to the total number of bytes in active extents mapped by the allocator.

This does not include inactive extents, even those that contain unused dirty pages, so there is no strict ordering between this and the value returned by Resident. This is a multiple of the page size, and is larger than the value returned by Active.

This statistic is cached, and is only refreshed when the epoch is advanced. See the Epoch type for more information.

This corresponds to stats.mapped in jemalloc's API.

Examples

use jemalloc_ctl::Epoch;
use jemalloc_ctl::stats::Mapped;

let epoch = Epoch::new().unwrap();
let mapped = Mapped::new().unwrap();

epoch.advance().unwrap();
let size = mapped.get().unwrap();
println!("{} bytes of total mapped data", size);

Methods

impl Mapped
[src]

[src]

Returns a new Mapped.

[src]

Returns the total number of bytes in active extents mapped by the allocator.

Trait Implementations

impl Copy for Mapped
[src]

impl Clone for Mapped
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Mapped

impl Sync for Mapped