pub trait PwmRange: Pwm {
type Range<'a>: IntoIterator<Item = (&'a Self::Key, &'a EntryValue<Self::Value>)>
where Self: 'a;
// Required method
fn range<R: RangeBounds<Self::Key>>(&self, range: R) -> Self::Range<'_>;
}
Expand description
An trait that can be used to get a range over the pending writes.
Required Associated Types§
sourcetype Range<'a>: IntoIterator<Item = (&'a Self::Key, &'a EntryValue<Self::Value>)>
where
Self: 'a
type Range<'a>: IntoIterator<Item = (&'a Self::Key, &'a EntryValue<Self::Value>)> where Self: 'a
The iterator type.
Required Methods§
sourcefn range<R: RangeBounds<Self::Key>>(&self, range: R) -> Self::Range<'_>
fn range<R: RangeBounds<Self::Key>>(&self, range: R) -> Self::Range<'_>
Returns an iterator over the pending writes.
Object Safety§
This trait is not object safe.