pub enum IntervalRefinement {
Bisection,
Newton,
Hybrid,
}Expand description
Interval refinement method.
Variants§
Trait Implementations§
Source§impl Clone for IntervalRefinement
impl Clone for IntervalRefinement
Source§fn clone(&self) -> IntervalRefinement
fn clone(&self) -> IntervalRefinement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntervalRefinement
impl Debug for IntervalRefinement
Source§impl PartialEq for IntervalRefinement
impl PartialEq for IntervalRefinement
Source§fn eq(&self, other: &IntervalRefinement) -> bool
fn eq(&self, other: &IntervalRefinement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IntervalRefinement
impl Eq for IntervalRefinement
impl StructuralPartialEq for IntervalRefinement
Auto Trait Implementations§
impl Freeze for IntervalRefinement
impl RefUnwindSafe for IntervalRefinement
impl Send for IntervalRefinement
impl Sync for IntervalRefinement
impl Unpin for IntervalRefinement
impl UnsafeUnpin for IntervalRefinement
impl UnwindSafe for IntervalRefinement
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