pub struct BitmapStats {
pub total_bitmaps: usize,
pub total_bits: usize,
pub setbit_count: usize,
pub getbit_count: usize,
pub bitcount_count: usize,
pub bitop_count: usize,
pub bitpos_count: usize,
pub bitfield_count: usize,
}Expand description
Bitmap statistics
Fields§
§total_bitmaps: usize§total_bits: usize§setbit_count: usize§getbit_count: usize§bitcount_count: usize§bitop_count: usize§bitpos_count: usize§bitfield_count: usizeTrait Implementations§
Source§impl Clone for BitmapStats
impl Clone for BitmapStats
Source§fn clone(&self) -> BitmapStats
fn clone(&self) -> BitmapStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BitmapStats
impl Debug for BitmapStats
Source§impl Default for BitmapStats
impl Default for BitmapStats
Source§fn default() -> BitmapStats
fn default() -> BitmapStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BitmapStats
impl<'de> Deserialize<'de> for BitmapStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BitmapStats
impl RefUnwindSafe for BitmapStats
impl Send for BitmapStats
impl Sync for BitmapStats
impl Unpin for BitmapStats
impl UnsafeUnpin for BitmapStats
impl UnwindSafe for BitmapStats
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