pub struct RootInterval {
pub low: f64,
pub high: f64,
}Expand description
A real interval known to contain exactly one root.
Fields§
§low: f64Lower bound of the interval.
high: f64Upper bound of the interval.
Trait Implementations§
Source§impl Clone for RootInterval
impl Clone for RootInterval
Source§fn clone(&self) -> RootInterval
fn clone(&self) -> RootInterval
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 RootInterval
impl Debug for RootInterval
Source§impl PartialEq for RootInterval
impl PartialEq for RootInterval
Source§fn eq(&self, other: &RootInterval) -> bool
fn eq(&self, other: &RootInterval) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RootInterval
Auto Trait Implementations§
impl Freeze for RootInterval
impl RefUnwindSafe for RootInterval
impl Send for RootInterval
impl Sync for RootInterval
impl Unpin for RootInterval
impl UnsafeUnpin for RootInterval
impl UnwindSafe for RootInterval
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