pub struct BisectorConfig<T> {
pub max_observations: usize,
pub max_knots: usize,
pub max_sign_evaluations: usize,
pub rel_tol: T,
pub tolerance_window: usize,
}Fields§
§max_observations: usize§max_knots: usize§max_sign_evaluations: usize§rel_tol: T§tolerance_window: usizeAuto Trait Implementations§
impl<T> Freeze for BisectorConfig<T>where
T: Freeze,
impl<T> RefUnwindSafe for BisectorConfig<T>where
T: RefUnwindSafe,
impl<T> Send for BisectorConfig<T>where
T: Send,
impl<T> Sync for BisectorConfig<T>where
T: Sync,
impl<T> Unpin for BisectorConfig<T>where
T: Unpin,
impl<T> UnsafeUnpin for BisectorConfig<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for BisectorConfig<T>where
T: UnwindSafe,
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