[][src]Trait rosy::range::IntoBounds

pub trait IntoBounds<S, E> {
    fn into_bounds(self) -> (S, Bound<E>);
}

A type that consists of a start (inclusive) and end bound.

Required methods

fn into_bounds(self) -> (S, Bound<E>)

Returns the start (inclusive) and end bounds of self.

Loading content...

Implementations on Foreign Types

impl<S, E> IntoBounds<S, E> for (S, Bound<E>)[src]

impl<S, E> IntoBounds<S, E> for (S, E)[src]

impl<A> IntoBounds<A, A> for Range<A>[src]

impl<A> IntoBounds<A, A> for RangeInclusive<A>[src]

impl<A> IntoBounds<A, A> for RangeFrom<A>[src]

Loading content...

Implementors

impl<S: Object, E: Object> IntoBounds<S, E> for rosy::range::Range<S, E>[src]

Loading content...