Enum juice::solver::SolverKind
source · pub enum SolverKind {
SGD(SGDKind),
}
Expand description
All available types of solvers.
Variants§
SGD(SGDKind)
Stochastic Gradient Descent. See [SGDKind][1] for all available SGD solvers. [1]: ./enum.SGDKind.html
Implementations§
source§impl SolverKind
impl SolverKind
Trait Implementations§
source§impl Clone for SolverKind
impl Clone for SolverKind
source§fn clone(&self) -> SolverKind
fn clone(&self) -> SolverKind
Returns a copy 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 moresource§impl Debug for SolverKind
impl Debug for SolverKind
impl Copy for SolverKind
Auto Trait Implementations§
impl RefUnwindSafe for SolverKind
impl Send for SolverKind
impl Sync for SolverKind
impl Unpin for SolverKind
impl UnwindSafe for SolverKind
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