Struct nuts_rs::GradDiagOptions
source · pub struct GradDiagOptions {
pub dual_average_options: DualAverageSettings,
pub mass_matrix_options: DiagAdaptExpSettings,
pub early_window: f64,
pub step_size_window: f64,
pub mass_matrix_switch_freq: u64,
pub early_mass_matrix_switch_freq: u64,
}
Fields§
§dual_average_options: DualAverageSettings
§mass_matrix_options: DiagAdaptExpSettings
§early_window: f64
§step_size_window: f64
§mass_matrix_switch_freq: u64
§early_mass_matrix_switch_freq: u64
Trait Implementations§
source§impl Clone for GradDiagOptions
impl Clone for GradDiagOptions
source§fn clone(&self) -> GradDiagOptions
fn clone(&self) -> GradDiagOptions
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 GradDiagOptions
impl Debug for GradDiagOptions
source§impl Default for GradDiagOptions
impl Default for GradDiagOptions
impl Copy for GradDiagOptions
Auto Trait Implementations§
impl Freeze for GradDiagOptions
impl RefUnwindSafe for GradDiagOptions
impl Send for GradDiagOptions
impl Sync for GradDiagOptions
impl Unpin for GradDiagOptions
impl UnwindSafe for GradDiagOptions
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more