pub struct BlockSizeSuggestion {
pub optimal_block_size: u32,
pub max_occupancy: f64,
pub all_results: Vec<(u32, f64)>,
}Expand description
Block size suggestion result.
Fields§
§optimal_block_size: u32§max_occupancy: f64§all_results: Vec<(u32, f64)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlockSizeSuggestion
impl RefUnwindSafe for BlockSizeSuggestion
impl Send for BlockSizeSuggestion
impl Sync for BlockSizeSuggestion
impl Unpin for BlockSizeSuggestion
impl UnsafeUnpin for BlockSizeSuggestion
impl UnwindSafe for BlockSizeSuggestion
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