Struct intervals_rs::IntervalLimit [−][src]
Implementations
impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> IntervalLimit<T>[src]
impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> IntervalLimit<T>[src]pub fn is_closed(&self) -> bool[src]
pub fn is_lower(&self) -> bool[src]
pub fn get_value(&self) -> &LimitValue<T>[src]
pub fn new(closed: bool, lower: bool, value: LimitValue<T>) -> Self[src]
pub fn lower(closed: bool, value: LimitValue<T>) -> Self[src]
pub fn upper(closed: bool, value: LimitValue<T>) -> Self[src]
pub fn is_infinity(&self) -> bool[src]
pub fn non_infinity(&self) -> bool[src]
pub fn is_open(&self) -> bool[src]
pub fn is_upper(&self) -> bool[src]
Trait Implementations
impl<T: Clone + Display + Hash + Ord> Clone for IntervalLimit<T>[src]
impl<T: Clone + Display + Hash + Ord> Clone for IntervalLimit<T>[src]fn clone(&self) -> IntervalLimit<T>[src]
fn clone(&self) -> IntervalLimit<T>[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> Display for IntervalLimit<T>[src]
impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> Display for IntervalLimit<T>[src]impl<T: Ord + Display + Clone + Hash> Ord for IntervalLimit<T>[src]
impl<T: Ord + Display + Clone + Hash> Ord for IntervalLimit<T>[src]impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> PartialEq<IntervalLimit<T>> for IntervalLimit<T>[src]
impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> PartialEq<IntervalLimit<T>> for IntervalLimit<T>[src]impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> PartialOrd<IntervalLimit<T>> for IntervalLimit<T>[src]
impl<T: Display + Clone + Hash + Eq + Ord + PartialEq + PartialOrd> PartialOrd<IntervalLimit<T>> for IntervalLimit<T>[src]fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<T: Eq + Display + Clone + Hash + Ord> Eq for IntervalLimit<T>[src]
impl<T: Display + Clone + Hash + Ord> StructuralEq for IntervalLimit<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for IntervalLimit<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for IntervalLimit<T> where
T: Send,
T: Send,
impl<T> Sync for IntervalLimit<T> where
T: Sync,
T: Sync,
impl<T> Unpin for IntervalLimit<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for IntervalLimit<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more