-
Notifications
You must be signed in to change notification settings - Fork 942
Closed
Labels
only-with-optionrequires a non-default option value to reproducerequires a non-default option value to reproducepoor-formatting
Description
I have hard_tabs enabled.
This is how it formats it:
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>;
What I'd expect:
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>;
Metadata
Metadata
Assignees
Labels
only-with-optionrequires a non-default option value to reproducerequires a non-default option value to reproducepoor-formatting