[][src]Struct gut::interval::OpenInterval

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

Interval from a to b that doesn't contain the endpoints, 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 + Copy> OpenInterval<T>[src]

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

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

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

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

Trait Implementations

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

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

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

type Output = Self

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

type Output = Self

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

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

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

fn default() -> Self[src]

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> RefUnwindSafe for OpenInterval<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]