Trait rotary::range::Range[][src]

pub trait Range {
    fn offset(self, offset: usize) -> Offset<Self>
    where
        Self: Sized + Range
, { ... }
fn chunked(self, n: usize, len: usize) -> Chunked<Self>
    where
        Self: Sized + Range
, { ... } }

A range that can be used in combination with copying data.

Provided methods

fn offset(self, offset: usize) -> Offset<Self> where
    Self: Sized + Range
[src]

Construct a range with the given offset.

fn chunked(self, n: usize, len: usize) -> Chunked<Self> where
    Self: Sized + Range
[src]

Construct a range with the given chunked setting.

Loading content...

Implementors

impl Range for Base[src]

impl Range for Chunked<Offset<Base>>[src]

impl Range for Offset<Base>[src]

Loading content...