pub trait AsyncCmRange: Sized + Cm {
// Required method
fn mark_range(
&mut self,
range: impl RangeBounds<Self::Key>,
) -> impl Future<Output = ()>;
}
Expand description
A extended trait of the AsyncCm
trait that can be used to manage the range of keys.
Required Methods§
Sourcefn mark_range(
&mut self,
range: impl RangeBounds<Self::Key>,
) -> impl Future<Output = ()>
fn mark_range( &mut self, range: impl RangeBounds<Self::Key>, ) -> impl Future<Output = ()>
Mark the range is read.
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.