Struct test_tools::Interval

source ·
pub struct Interval<T = isize>where
    T: Sub<Output = T> + Add<Output = T> + Copy,
    isize: Into<T>,{ /* private fields */ }
Expand description

Alternative implementation of interval.

Both core::ops::Range, core::ops::RangeInclusive are convertable to crate::Interval

Implementations§

source§

impl<T> Interval<T>where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

source

pub fn new(first: T, last: T) -> Interval<T>

Constructor of an interval. Expects closed interval in arguments.

Trait Implementations§

source§

impl<T> Debug for Interval<T>where T: Sub<Output = T> + Add<Output = T> + Debug + Copy, isize: Into<T>,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> From<Range<T>> for Interval<T>where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

source§

fn from(src: Range<T>) -> Interval<T>

Converts to this type from the input type.
source§

impl<T> From<RangeInclusive<T>> for Interval<T>where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

source§

fn from(src: RangeInclusive<T>) -> Interval<T>

Converts to this type from the input type.
source§

impl<T> IntervalAdapter<T> for Interval<T>where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

source§

fn first(&self) -> T

the first element of the ( closed ) interval
source§

fn last(&self) -> T

the last element of the ( closed ) interval
source§

fn len(&self) -> T

number of discrete elements in the interval
source§

fn closed(&self) -> (T, T)

interval in closed format as pair of numbers
source§

fn closed_open(&self) -> (T, T)

interval in closed-open format as pair of numbers
source§

fn first_len(&self) -> (T, T)

interval in first-length format as pair of numbers
source§

impl<T> PartialEq for Interval<T>where T: Sub<Output = T> + Add<Output = T> + PartialEq + Copy, isize: Into<T>,

source§

fn eq(&self, other: &Interval<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> StructuralPartialEq for Interval<T>where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Interval<T>where T: RefUnwindSafe,

§

impl<T> Send for Interval<T>where T: Send,

§

impl<T> Sync for Interval<T>where T: Sync,

§

impl<T> Unpin for Interval<T>where T: Unpin,

§

impl<T> UnwindSafe for Interval<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<Target, Original> VectorizedInto<Target> for Originalwhere Target: VectorizedFrom<Original>,

source§

fn vectorized_into(self) -> Target

Performs the conversion.