pub enum RootFindingMethod {
Bisection,
Brent,
Secant,
InverseQuadraticInterpolation,
NewtonRaphson,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RootFindingMethod
impl RefUnwindSafe for RootFindingMethod
impl Send for RootFindingMethod
impl Sync for RootFindingMethod
impl Unpin for RootFindingMethod
impl UnwindSafe for RootFindingMethod
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