pub struct StandardMap {
pub alphabet: Alphabet,
pub min_key: usize,
pub journal_key: usize,
pub value_mode: ValueMode,
pub count: u32,
}Expand description
Standard test map for profiling tries.
Fields§
§alphabet: AlphabetThe alphabet to use for keys.
min_key: usizeMinimum size of key.
journal_key: usizeDelta size of key.
value_mode: ValueModeMode of value generation.
count: u32Number of keys.
Implementations§
Auto Trait Implementations§
impl Freeze for StandardMap
impl RefUnwindSafe for StandardMap
impl Send for StandardMap
impl Sync for StandardMap
impl Unpin for StandardMap
impl UnwindSafe for StandardMap
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