#[repr(C)]pub struct SCIP_Interval {
pub inf: f64,
pub sup: f64,
}
Expand description
interval given by infimum and supremum
Fields§
§inf: f64
< infimum (lower bound) of interval
sup: f64
< supremum (upper bound) of interval
Trait Implementations§
Source§impl Clone for SCIP_Interval
impl Clone for SCIP_Interval
Source§fn clone(&self) -> SCIP_Interval
fn clone(&self) -> SCIP_Interval
Returns a duplicate 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 SCIP_Interval
impl Debug for SCIP_Interval
impl Copy for SCIP_Interval
Auto Trait Implementations§
impl Freeze for SCIP_Interval
impl RefUnwindSafe for SCIP_Interval
impl Send for SCIP_Interval
impl Sync for SCIP_Interval
impl Unpin for SCIP_Interval
impl UnwindSafe for SCIP_Interval
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