pub enum BucketMapError {
DataNoSpace((u64, u8)),
IndexNoSpace(u64),
}
Expand description
used to communicate resize necessary and current size.
Variants§
DataNoSpace((u64, u8))
(bucket_index, current_capacity_pow2) Note that this is specific to data buckets, which grow in powers of 2
IndexNoSpace(u64)
current_capacity_entries Note that this is specific to index buckets, which can be ‘Actual’ sizes
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BucketMapError
impl RefUnwindSafe for BucketMapError
impl Send for BucketMapError
impl Sync for BucketMapError
impl Unpin for BucketMapError
impl UnwindSafe for BucketMapError
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