[][src]Struct gut::interval::ClosedInterval

pub struct ClosedInterval<T> {
    pub a: T,
    pub b: T,
}

Interval from a to b that contains both endponts, where a < b on the floating point line.

Fields

a: T

The lower limit of the interval

b: T

The upper limit of the interval

Methods

impl<T: PartialOrd + PartialEq + Copy> ClosedInterval<T>[src]

pub fn new(a: T, b: T) -> ClosedInterval<T>[src]

pub fn is_singleton(&self) -> bool[src]

Check if this interval contains just one point

pub fn endpoint(&self, which: EndPoint) -> T[src]

impl<T: Sub<Output = T> + Copy + PartialOrd> ClosedInterval<T>[src]

pub fn length(&self) -> T[src]

Trait Implementations

impl<T: Float> Empty for ClosedInterval<T>[src]

impl<T: PartialOrd> Contains<T> for ClosedInterval<T>[src]

impl<T: Float> Absorb<T> for ClosedInterval<T>[src]

type Output = Self

impl<T: Float> Absorb<ClosedInterval<T>> for ClosedInterval<T>[src]

type Output = Self

impl<T: Float> Intersect<ClosedInterval<T>> for ClosedInterval<T>[src]

type Output = Self

impl<T: Float> Centroid<Option<T>> for ClosedInterval<T>[src]

impl<T: Clone> Clone for ClosedInterval<T>[src]

impl<T: Copy> Copy for ClosedInterval<T>[src]

impl<T: Float> Default for ClosedInterval<T>[src]

fn default() -> Self[src]

Create an empty interval. The choice of enpoints here is arbitrary as long as b < a.

impl<T: Eq> Eq for ClosedInterval<T>[src]

impl<T: PartialEq> PartialEq<ClosedInterval<T>> for ClosedInterval<T>[src]

impl<T: Debug> Debug for ClosedInterval<T>[src]

impl<T: Hash> Hash for ClosedInterval<T>[src]

impl<T> StructuralPartialEq for ClosedInterval<T>[src]

impl<T> StructuralEq for ClosedInterval<T>[src]

Auto Trait Implementations

impl<T> Send for ClosedInterval<T> where
    T: Send

impl<T> Sync for ClosedInterval<T> where
    T: Sync

impl<T> Unpin for ClosedInterval<T> where
    T: Unpin

impl<T> UnwindSafe for ClosedInterval<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for ClosedInterval<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Bytes for T[src]

impl<T> Pod for T where
    T: 'static + Copy + Send + Sync + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]