enum BlockSizeGrowthStrategy {
Fixed {
size: u32,
},
Exponential {
current_size: u32,
},
}
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for BlockSizeGrowthStrategy
impl RefUnwindSafe for BlockSizeGrowthStrategy
impl Send for BlockSizeGrowthStrategy
impl Sync for BlockSizeGrowthStrategy
impl Unpin for BlockSizeGrowthStrategy
impl UnwindSafe for BlockSizeGrowthStrategy
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