Struct exar::Interval [] [src]

pub struct Interval<T> {
    pub start: T,
    pub end: T,
}

An interval.

Fields

The start of the interval.

The end of the interval.

Methods

impl<T> Interval<T>
[src]

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

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

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.