pub enum ParamGrid {
RrfK {
values: Vec<u32>,
},
Weighted {
weight_combinations: Vec<Vec<f32>>,
},
}Expand description
Parameter grid for optimization.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParamGrid
impl RefUnwindSafe for ParamGrid
impl Send for ParamGrid
impl Sync for ParamGrid
impl Unpin for ParamGrid
impl UnsafeUnpin for ParamGrid
impl UnwindSafe for ParamGrid
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