pub trait AsyncPwmEquivalentRange: AsyncPwmRange + AsyncPwmEquivalent {
// Required method
fn range_equivalent<T, R>(
&self,
range: R,
) -> impl Future<Output = Self::Range<'_>>
where T: Eq + Hash + ?Sized,
Self::Key: Borrow<T> + Eq + Hash,
R: RangeBounds<T>;
}
Expand description
An trait that can be used to get a range over the pending writes.
Required Methods§
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.