Struct scip_sys::SCIP_Interval
source · #[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 copy 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