pub trait IntoRange {
    // Required method
    fn into_range<T>(self, buf: &RawBuffer) -> Result<BufferRange>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl IntoRange for Range<usize>

source§

impl IntoRange for RangeFrom<usize>

source§

impl IntoRange for RangeTo<usize>

source§

impl IntoRange for RangeToInclusive<usize>

source§

impl IntoRange for RangeFull

source§

impl IntoRange for [usize; 2]

source§

impl IntoRange for (usize, usize)

source§

impl IntoRange for RangeInclusive<usize>

Implementors§