RangeableStore

Trait RangeableStore 

Source
pub trait RangeableStore: Store {
    type Range: Range;

    // Required method
    fn range<A: Into<Atom>, R: RangeBounds<i64>>(
        &self,
        range: R,
        name: Option<A>,
    ) -> Result<Self::Range, Error>;
}

Required Associated Types§

Required Methods§

Source

fn range<A: Into<Atom>, R: RangeBounds<i64>>( &self, range: R, name: Option<A>, ) -> Result<Self::Range, Error>

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§