Trait gfx_hal::range::RangeArg

source ·
pub trait RangeArg<T> {
    fn start(&self) -> Option<&T>;
    fn end(&self) -> Option<&T>;
}
Expand description

Abstracts the std range types.

Based upon the nightly RangeArgument trait.

Required Methods

Start index bound.

End index bound.

Implementations on Foreign Types

Implementors