pub struct Slab {Show 15 fields
pub id: u64,
pub chunk_size: u64,
pub chunks_per_page: u64,
pub total_pages: u64,
pub total_chunks: u64,
pub used_chunks: u64,
pub free_chunks: u64,
pub get_hits: u64,
pub cmd_set: u64,
pub delete_hits: u64,
pub incr_hits: u64,
pub decr_hits: u64,
pub cas_hits: u64,
pub cas_badval: u64,
pub touch_hits: u64,
}
Fields§
§id: u64
§chunk_size: u64
§chunks_per_page: u64
§total_pages: u64
§total_chunks: u64
§used_chunks: u64
§free_chunks: u64
§get_hits: u64
§cmd_set: u64
§delete_hits: u64
§incr_hits: u64
§decr_hits: u64
§cas_hits: u64
§cas_badval: u64
§touch_hits: u64
Trait Implementations§
Source§impl Ord for Slab
impl Ord for Slab
Source§impl PartialOrd for Slab
impl PartialOrd for Slab
impl Eq for Slab
impl StructuralPartialEq for Slab
Auto Trait Implementations§
impl Freeze for Slab
impl RefUnwindSafe for Slab
impl Send for Slab
impl Sync for Slab
impl Unpin for Slab
impl UnwindSafe for Slab
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