pub trait FixedRangeBounds<T>
where T: ?Sized,
{ // Required methods fn start_bound(&self) -> FixedBound<&T>; fn end_bound(&self) -> FixedBound<&T>; }
Expand description

Same as RangeBounds but without exclusive bounds

Required Methods§

fn start_bound(&self) -> FixedBound<&T>

Start index bound

fn end_bound(&self) -> FixedBound<&T>

End index bound

Implementors§