pub trait IntoRange: AsRange {
    // Required method
    fn into_range(self) -> AnyRange<Self::Item>;
}

Required Methods§

source

fn into_range(self) -> AnyRange<Self::Item>

Implementations on Foreign Types§

source§

impl IntoRange for i64

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for u64

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl<T: Measure + PartialEnum> IntoRange for RangeInclusive<T>

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl<T: Measure + PartialEnum> IntoRange for RangeToInclusive<T>

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for f32

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl<T: Measure + PartialEnum> IntoRange for Range<T>

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for u8

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for usize

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for f64

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl<T: Measure + PartialEnum> IntoRange for RangeFrom<T>

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl<T: Measure + PartialEnum> IntoRange for RangeTo<T>

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for char

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for i32

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for i8

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for u32

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for u16

source§

fn into_range(self) -> AnyRange<Self::Item>

source§

impl IntoRange for i16

source§

fn into_range(self) -> AnyRange<Self::Item>

Implementors§