pub enum Hyperparams {
Map(DashMap<String, String>),
Args(Vec<String>),
}Expand description
Hyperparams enum represents hyperparameter inputs
Variants§
Trait Implementations§
Source§impl Clone for Hyperparams
impl Clone for Hyperparams
Source§fn clone(&self) -> Hyperparams
fn clone(&self) -> Hyperparams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Hyperparams
impl !RefUnwindSafe for Hyperparams
impl Send for Hyperparams
impl Sync for Hyperparams
impl Unpin for Hyperparams
impl UnwindSafe for Hyperparams
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