Trait txn_core::sync::PwmEquivalentRange

source ·
pub trait PwmEquivalentRange: PwmRange + PwmEquivalent {
    // Required method
    fn range_equivalent<T, R>(&self, range: R) -> Self::Range<'_>
       where T: ?Sized + Eq + Hash,
             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§

source

fn range_equivalent<T, R>(&self, range: R) -> Self::Range<'_>
where T: ?Sized + Eq + Hash, Self::Key: Borrow<T> + Eq + Hash, R: RangeBounds<T>,

Returns an iterator over the pending writes.

Object Safety§

This trait is not object safe.

Implementors§