Trait RangeBoundsExt

Source
pub trait RangeBoundsExt<T: Idx>: RangeBounds<T> {
    // Provided methods
    fn start(&self) -> Option<T> { ... }
    fn end(&self) -> Option<T> { ... }
    fn len(&self) -> Option<T> { ... }
    fn is_empty(&self) -> bool { ... }
    fn is_full(&self) -> bool { ... }
    fn map<F, R>(&self, f: F) -> (Bound<R>, Bound<R>)
       where F: Fn(&T) -> R { ... }
}

Provided Methods§

Source

fn start(&self) -> Option<T>

Source

fn end(&self) -> Option<T>

Source

fn len(&self) -> Option<T>

Source

fn is_empty(&self) -> bool

Source

fn is_full(&self) -> bool

Source

fn map<F, R>(&self, f: F) -> (Bound<R>, Bound<R>)
where F: Fn(&T) -> R,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Idx, RB: RangeBounds<T>> RangeBoundsExt<T> for RB