2024-07-19 18:25:11 -05:00
|
|
|
// rustfmt-style_edition: 2024
|
2021-11-18 12:38:34 -06:00
|
|
|
|
|
|
|
pub type Iter<'a, D> = impl DoubleEndedIterator<Item = (SomethingSomethingSomethingLongType<D>)>
|
|
|
|
+ ExactSizeIterator
|
|
|
|
+ 'a;
|
|
|
|
|
|
|
|
trait FOo {
|
|
|
|
pub type Iter<'a, D> = impl DoubleEndedIterator<Item = (SomethingSomethingSomethingLongType<D>)>
|
|
|
|
+ ExactSizeIterator
|
|
|
|
+ 'a;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
type Iter<'a, D> = impl DoubleEndedIterator<Item = (SomethingSomethingSomethingLongType<D>)>
|
|
|
|
+ ExactSizeIterator
|
|
|
|
+ 'a;
|
|
|
|
}
|