-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Description
The binop_separator
option doesn't apply to +
signs present in where
bounds. For example, when set to "Back", it outputs:
pub async fn retrieve_views<'err, E, L, O, P>() -> DynResult<'err, Vec<EmployeeView>>
where
E: EmployeeAdapter + Send,
L: LocationAdapter + Send,
O: OrganizationAdapter + Send,
P: PersonAdapter + Send,
<E as EmployeeAdapter>::Error: 'err
+ From<<L as LocationAdapter>::Error>
+ From<<O as OrganizationAdapter>::Error>
+ From<<P as PersonAdapter>::Error>
+ Send,
{
Whereas it should output:
pub async fn retrieve_views<'err, E, L, O, P>() -> DynResult<'err, Vec<EmployeeView>>
where
E: EmployeeAdapter + Send,
L: LocationAdapter + Send,
O: OrganizationAdapter + Send,
P: PersonAdapter + Send,
<E as EmployeeAdapter>::Error: 'err +
From<<L as LocationAdapter>::Error> +
From<<O as OrganizationAdapter>::Error> +
From<<P as PersonAdapter>::Error> +
Send,
{
Metadata
Metadata
Assignees
Labels
No labels