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.
16 lines
477 B
Rust
16 lines
477 B
Rust
// rustfmt-style_edition: 2024
|
|
|
|
impl<Target: FromEvent<A> + FromEvent<B>, A: Widget2<Ctx = C>, B: Widget2<Ctx = C>, C: for<'a> CtxFamily<'a>> Widget2 for WidgetEventLifter<Target, A, B>
|
|
{
|
|
type Ctx = C;
|
|
type Event = Vec<Target>;
|
|
}
|
|
|
|
mod foo {
|
|
impl<Target: FromEvent<A> + FromEvent<B>, A: Widget2<Ctx = C>, B: Widget2<Ctx = C>, C: for<'a> CtxFamily<'a>> Widget2 for WidgetEventLifter<Target, A, B>
|
|
{
|
|
type Ctx = C;
|
|
type Event = Vec<Target>;
|
|
}
|
|
}
|