aa8a53f687
Updates all the various files utilized in the system and idempotence tests to directly use the corresponding 'style_edition' configuration as opposed to keeping the original 'version' values and relying on the mapping.
18 lines
474 B
Rust
18 lines
474 B
Rust
// rustfmt-style_edition: 2024
|
|
|
|
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;
|
|
}
|