18 lines
467 B
Rust
18 lines
467 B
Rust
// rustfmt-version: Two
|
|
|
|
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;
|
|
}
|