Skip to content

Commit 620a01b

Browse files
authored
Unrolled build for rust-lang#116085
Rollup merge of rust-lang#116085 - notriddle:notriddle/search-associated-types, r=GuillaumeGomez rustdoc-search: add support for traits and associated types # Summary Trait associated type queries work in rustdoc's type driven search. The data is included in the search-index.js file, and the queries are designed to "do what I mean" when users type them in, so, for example, `Iterator<Item=T> -> Option<T>` includes `Iterator::next` in the SERP[^SERP], and `Iterator<T> -> Option<T>` also includes `Iterator::next` in the SERP. [^SERP]: search engine results page ## Sample searches * [`iterator<Item=T>, fnmut -> T`][iterreduce] * [`iterator<T>, fnmut -> T`][iterreduceterse] [iterreduce]: http://notriddle.com/rustdoc-html-demo-5/associated-types/std/index.html?search=iterator%3CItem%3DT%3E%2C%20fnmut%20-%3E%20T&filter-crate=std [iterreduceterse]: http://notriddle.com/rustdoc-html-demo-5/associated-types/std/index.html?search=iterator%3CT%3E%2C%20fnmut%20-%3E%20T&filter-crate=std # Motivation My primary motivation for working on search.js at all is to make it easier to use highly generic APIs, like the Iterator API. The type signature describes these functions pretty well, while the names are almost arbitrary. Before this PR, type bindings were not consistently included in search-index.js at all (you couldn't find Iterator::next by typing in its function signature) and you couldn't explicitly search for them. This PR fixes both of these problems. # Guide-level explanation *Excerpt from [the Rustdoc book](http://notriddle.com/rustdoc-html-demo-5/associated-types/rustdoc/read-documentation/search.html), included in this PR.* > Function signature searches can query generics, wrapped in angle brackets, and traits will be normalized like types in the search engine if no type parameters match them. For example, a function with the signature `fn my_function<I: Iterator<Item=u32>>(input: I) -> usize` can be matched with the following queries: > > * `Iterator<Item=u32> -> usize` > * `Iterator<u32> -> usize` (you can leave out the `Item=` part) > * `Iterator -> usize` (you can leave out iterator's generic entirely) > * `T -> usize` (you can match with a generic parameter) > > Each of the above queries is progressively looser, except the last one would not match `dyn Iterator`, since that's not a type parameter. # Reference-level explanation Inside the angle brackets, you can choose whether to write a name before the parameter and the equal sign. This syntax is called [`GenericArgsBinding`](https://doc.rust-lang.org/reference/paths.html#paths-in-expressions) in the Rust Reference, and it allows you to constrain a trait's associated type. As a convenience, you don't actually have to put the name in (Rust requires it, but Rustdoc Search doesn't). This works about the same way unboxing already works in Search: the terse `Iterator<u32>` is a match for `Iterator<Item=u32>`, but the opposite is not true, just like `u32` is a match for `Iterator<u32>`. When converting a trait method for the search index, the trait is substituted for `Self`, and all associated types are bound to generics. This way, if you have the following trait definition: ```rust pub trait MyTrait { type Output; fn method(self) -> Self::Output; } ``` The following queries will match its method: * `MyTrait<Output=T> -> T` * `MyTrait<T> -> T` * `MyTrait -> T` But these queries will not match it: * <i>`MyTrait<Output=u32> -> u32`</i> * <i>`MyTrait<Output> -> Output`</i> * <i>`MyTrait -> MyTrait::Output`</i> # Drawbacks It's a little bit bigger: ```console $ du before/search-index1.74.0.js after/search-index1.74.0.js 4020 before/search-index1.74.0.js 4068 after/search-index1.74.0.js ``` # Rationale and alternatives I don't want to just not do this. On it's own, it's not terribly useful, but in addition to searching by normal traits, this is also intended as a desugaring target for closures. That's why it needs to actually distinguish the two: it allows the future desugaring to distinguish function output and input. The other alternative would be to not allow users to leave out the name, so `iterator<u32>` doesn't work. That would be unfortunate, because mixing up which ones have out params and which ones are plain generics is an easy enough mistake that the Rust compiler itself helps people out with it. # Prior art * <http://neilmitchell.blogspot.com/2020/06/hoogle-searching-overview.html> The current Rustdoc algorithm, both before this PR and after it, has a fairly expensive matching algorithm over a fairly simple file format. Luckily, we aren't trying to scale to all of crates.io, so it's usable, but it's not great when I throw it at docs.servo.org # Unresolved questions Okay, but *how do we want to handle closures?* I know the system will desugar `FnOnce(T) -> U` into `trait:FnOnce<Output=U, primitive:tuple<T>>`, but what if I don't know what trait I'm looking for? This PR can merge with nothing, but it'd be nice to have a plan. Specifically, how should the special form used to handle all varieties of basic callable: primitive:fn (function pointers), and trait:Fn, trait:FnOnce, and trait:FnMut should all be searchable using a single syntax, because I'm always forgetting which one is used in the function I'm looking for. The essential question is how closely we want to copy Rust's own syntax. The tersest way to expression Option::map might be: Option<T>, (T -> U) -> Option<U> That's the approach I would prefer, but nobody's going to attempt it without being told, so maybe this would be better? Option<T>, (fn(T) -> U) -> Option<U> It does require double parens, but at least it's mostly unambiguous. Unfortunately, it looks like the syntax you'd use for function pointers, implying that if you specifically wanted to limit your search to function pointers, you'd need to use `primitive:fn(T) -> U`. Then again, searching is normally case-insensitive, so you'd want that anyway to disambiguate from `trait:Fn(T) -> U`. # Future possibilities ## This thing really needs a ranking algorithm That is, this PR increases the number of matches for some type-based queries. They're usually pretty good matches, but there's still more of them, and it's evident that if you have two functions, `foo(MyTrait<u8>)` and `bar(MyTrait<Item=u8>)`, if the user typed `MyTrait<u8>` then `foo` should show up first. A design choice that these PRs have followed is that adding more stuff to the search query always reduces the number of functions that get matched. The advantage of doing it that way is that you can rank them by just counting how many atoms are in the function's signature (lowest score goes on top). Since it's impossible for a matching function to have fewer atoms than the search query, if there's a function with exactly the same set of atoms in it, then that'll be on top. More complicated ranking algos tend to penalize long documents anyway, if the [distance metrics](https://www.benfrederickson.com/distance-metrics/?utm_source=flipboard&utm_content=other) I found through [Flipboard](https://flipboard.com/`@arnie0426/building-recommender-systems-nvue3iqtgrn10t45)` (and postgresql's `ts_rank_cd`) are anything to go by. Real-world data sets tend to have weird outliers, like they have God Functions with zillions of arguments of all sorts of types, and Rustdoc ought to put such a function at the bottom. The other natural choice would be interleaving with `unifyFunctionTypes` to count the number of unboxings and reorderings. This would compute a distance function, and would do a fine job of ranking the results, as [described here](https://ndmitchell.com/downloads/slides-hoogle_finding_functions_from_types-16_may_2011.pdf) by the Hoogle dev, but is more complicated than it sounds. The current algorithm returns when it finds a result that *exists at all*, but a distance function should find an *optimal solution* to find the smallest sequence of edits. ## This could also use a benchmark suite and some optimization This approach also lends itself to layering a bloom filter in front of the backtracking unification engine. * At load time, hash the typeNameIdMap ID for each atom and set the matching entry in a fixed-size byte array for each function to 1. Call it `fnType.bloomFilter` * At search time, do the same for the atoms in the query (excluding special forms like `[]` that can match more than one thing). Call it `parsedQuery.bloomFilter` * For each function, `if (fnType.bloomFilter | (~parsedQuery.bloomFilter) !== ~0) { return false; }` There's also room to optimize the unification engine itself, by using stacks and persistent data structures instead of copying arrays around, or by using hashing instead of linear scans (the current algorithm was rewritten from one that tried to do that, but was too much to fit in my head and had a bunch of bugs). The advantage of Just Backtracking Better over the bloom filter is that it doesn't require the engine to retain any special algebraic properties. But, first, we need a set of benchmarks to be able to judge if such a thing will actually help. ## Referring to associated types by path *I don't want to implement this one, but if I did, this is how I'd do it.* In Rust, this is represented by a structure called a qualified path, or QPath. They look like this: <Self as Iterator>::Item <F as FnOnce>::Output They can also, if it's unambiguous, use a plain path and just let the system figure it out: Self::Item F::Output In Rustdoc Type-Driven Search, we don't want to force people to be unambiguous. Instead, we should try *all reasonable interpretations*, return results whenever any of them match, and let users make their query more specific if too many results are matches. To enable associated type path searches in Rustdoc, we need to: 1. When lowering a trait method to a search-index.js function signature, Self should be explicitly represented as a generic argument. It should always be assigned `-1`, so that if the user uses `Self` in their search query, we can ensure it always matches the real Self and not something else. Any functions that don't *have* a Self should drop a `0` into the first position of the where clause, to express that there isn't one and reserve the `-1` position. * Reminder: generics are negative, concrete types are positive, and zero is a reserved sentinel. * Right now, `Iterator::next` is lowered as if it were `fn next<T>(self: Iterator<Item=T>) -> Option<T>`. It should become `fn next<Self, T>(self: Self) -> Option<T> where Self: Iterator<Item=T>` instead. 3. Add another backtracking edge to the unification engine, so that when the user writes something like `some::thing`, the interpretation where `some` is a module and `thing` is a standalone item becomes one possible match candidate, while the interpretation where `some` is a trait and `thing` is an associated type is a separate match candidate. The backtracking engine is basically powerful enough to do this already, since unboxing generic type parameters into their traits already requires the ability to do this kind of thing. * When interpreting `some::thing` where `some` is a trait and `thing` is an associated type, it should be treated equivalently to `<self as some>::thing`. If you want to bind it to some generic parameter other than `Self`, you need to explicitly say so. * If no trait called `some` actually exists, treat it as a generic type parameter instead. Track every trait mentioned in the current working function signature, and add a match candidate for each one. * A user that explicitly wants the trait-associated-type interpretation could write a qpath (like `<self as trait>::type`), and a user that explicitly wants the module-item interpretation should use an item type filter (like `struct:module::type`). 4. To actually do the matching, maintain a `Map<(QueryGenericParamId, TraitId), FnGenericParamId>` alongside the existing `Map<QueryGenericParamId, FnGenericParamId>` that is already used to handle plain generic parameters. This works, because, when a trait function signature is lowered to search-index.js, the `rustdoc` backend always generates an FnGenericParamId for every trait associated type it sees mentioned in the function's signature. 5. Parse QPaths. Specifically, * QueryElem adds three new fields. `isQPath` is a boolean flag, and `traitNameId` contains an entry for `typeNameIdMap` corresponding to the trait part of a qpath, and `parentId` may contain either a concrete type ID or a negative number referring to a generic type parameter. The actual `id` of the query elem will always be a negative number, because this is essentially a funny way to add a generic type constraint. * If it's a QPath, then both of those IDs get filled in with the respective parts of the map. The unification engine will check the where clause to ensure the trait actually applies to the generic parameter in question, will check the type parameter constraint, and will add a mapping to `mgens` recording this as a solution. * If it's just a regular path, then `isQPath` is false, and the parser will fill in both `traitNameId` and `parentId` based on the same path. The unification engine, seeing isQPath is false and that these IDs were filled in, will try all three solutions: the path might be part of a concrete type name, or it might be referring to a trait, or it might be referring to a generic type parameter. ### Why not implement QPath searches? I'm not sure if anybody really wants to write such complicated queries. You can do a pretty good job of describing the generic functions in the standard library without resorting to FQPs. These two queries, for example, would both match the Iterator::map function if we added support for higher order function queries and a rule that allows a type to match its *notable traits*. // I like this version, because it's identical to how `Option::map` would be written. // There's a reason why Iterator::map and Option::map have the same name. Iterator<T>, (T -> U) -> Iterator<U> // This version explicitly uses the type parameter constraints. Iterator<Item=T>, (T -> U) -> Iterator<Item=U> If I try to write this one using FQP, however, the results seem worse: // This one is less expressive than the versions that don't use associated type paths. // It matches `Iterator::filter`, while the above two example queries don't. Iterator, (Iterator::Item -> Iterator::Item) -> Iterator // This doesn't work, because the return type of `Iterator::map` is not a generic // parameter with an `Iterator` trait bound. It's a concrete type that // implements `Iterator`. Return-Position-Impl-Trait is the same way. // // There's a difference between something like `map`, whose return value // implements Iterator, and something like `collect`, where the caller // gets to decide what the concrete type is going to be. //Self, (Self::Item -> I::Item) -> I where Self: Iterator, I: Iterator // This works, but it seems subjectively ugly, complex, and counterintuitive to me. Self, (<Self as Iterator>::Item -> T) -> Iterator<Item=T>
2 parents e24e5af + acc74c0 commit 620a01b

22 files changed

+1426
-121
lines changed

src/doc/rustdoc/src/read-documentation/search.md

+43-4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ the standard library and functions that are included in the results list:
7272
| [`stdout, [u8]`][stdoutu8] | `Stdout::write` |
7373
| [`any -> !`][] | `panic::panic_any` |
7474
| [`vec::intoiter<T> -> [T]`][iterasslice] | `IntoIter::as_slice` and `IntoIter::next_chunk` |
75+
| [`iterator<T>, fnmut -> T`][iterreduce] | `Iterator::reduce` and `Iterator::find` |
7576

7677
[`usize -> vec`]: ../../std/vec/struct.Vec.html?search=usize%20-%3E%20vec&filter-crate=std
7778
[`vec, vec -> bool`]: ../../std/vec/struct.Vec.html?search=vec,%20vec%20-%3E%20bool&filter-crate=std
@@ -81,6 +82,7 @@ the standard library and functions that are included in the results list:
8182
[`any -> !`]: ../../std/vec/struct.Vec.html?search=any%20-%3E%20!&filter-crate=std
8283
[stdoutu8]: ../../std/vec/struct.Vec.html?search=stdout%2C%20[u8]&filter-crate=std
8384
[iterasslice]: ../../std/vec/struct.Vec.html?search=vec%3A%3Aintoiter<T>%20->%20[T]&filter-crate=std
85+
[iterreduce]: ../../std/index.html?search=iterator<T>%2C%20fnmut%20->%20T&filter-crate=std
8486

8587
### How type-based search works
8688

@@ -95,16 +97,47 @@ After deciding which items are type parameters and which are actual types, it
9597
then searches by matching up the function parameters (written before the `->`)
9698
and the return types (written after the `->`). Type matching is order-agnostic,
9799
and allows items to be left out of the query, but items that are present in the
98-
query must be present in the function for it to match.
100+
query must be present in the function for it to match. The `self` parameter is
101+
treated the same as any other parameter, and `Self` is resolved to the
102+
underlying type's name.
99103

100104
Function signature searches can query generics, wrapped in angle brackets, and
101105
traits will be normalized like types in the search engine if no type parameters
102106
match them. For example, a function with the signature
103107
`fn my_function<I: Iterator<Item=u32>>(input: I) -> usize`
104108
can be matched with the following queries:
105109

106-
* `Iterator<u32> -> usize`
107-
* `Iterator -> usize`
110+
* `Iterator<Item=u32> -> usize`
111+
* `Iterator<u32> -> usize` (you can leave out the `Item=` part)
112+
* `Iterator -> usize` (you can leave out iterator's generic entirely)
113+
* `T -> usize` (you can match with a generic parameter)
114+
115+
Each of the above queries is progressively looser, except the last one
116+
would not match `dyn Iterator`, since that's not a type parameter.
117+
118+
If a bound has multiple associated types, specifying the name allows you to
119+
pick which one gets matched. If no name is specified, then the query will
120+
match of any of them. For example,
121+
122+
```rust
123+
pub trait MyTrait {
124+
type First;
125+
type Second;
126+
}
127+
128+
/// This function can be found using the following search queries:
129+
///
130+
/// MyTrait<First=u8, Second=u32> -> bool
131+
/// MyTrait<u32, First=u8> -> bool
132+
/// MyTrait<Second=u32> -> bool
133+
/// MyTrait<u32, u8> -> bool
134+
///
135+
/// The following queries, however, will *not* match it:
136+
///
137+
/// MyTrait<First=u32> -> bool
138+
/// MyTrait<u32, u32> -> bool
139+
pub fn my_fn(x: impl MyTrait<First=u8, Second=u32>) -> bool { true }
140+
```
108141

109142
Generics and function parameters are order-agnostic, but sensitive to nesting
110143
and number of matches. For example, a function with the signature
@@ -134,6 +167,10 @@ Most of these limitations should be addressed in future version of Rustdoc.
134167
with that bound, it'll match, but `option<T> -> T where T: Default`
135168
cannot be precisely searched for (use `option<Default> -> Default`).
136169

170+
* Supertraits, type aliases, and Deref are all ignored. Search mostly
171+
operates on type signatures *as written*, and not as they are
172+
represented within the compiler.
173+
137174
* Type parameters match type parameters, such that `Option<A>` matches
138175
`Option<T>`, but never match concrete types in function signatures.
139176
A trait named as if it were a type, such as `Option<Read>`, will match
@@ -183,7 +220,8 @@ slice = OPEN-SQUARE-BRACKET [ nonempty-arg-list ] CLOSE-SQUARE-BRACKET
183220
arg = [type-filter *WS COLON *WS] (path [generics] / slice / [!])
184221
type-sep = COMMA/WS *(COMMA/WS)
185222
nonempty-arg-list = *(type-sep) arg *(type-sep arg) *(type-sep)
186-
generics = OPEN-ANGLE-BRACKET [ nonempty-arg-list ] *(type-sep)
223+
generic-arg-list = *(type-sep) arg [ EQUAL arg ] *(type-sep arg [ EQUAL arg ]) *(type-sep)
224+
generics = OPEN-ANGLE-BRACKET [ generic-arg-list ] *(type-sep)
187225
CLOSE-ANGLE-BRACKET
188226
return-args = RETURN-ARROW *(type-sep) nonempty-arg-list
189227
@@ -230,6 +268,7 @@ DOUBLE-COLON = "::"
230268
QUOTE = %x22
231269
COMMA = ","
232270
RETURN-ARROW = "->"
271+
EQUAL = "="
233272
234273
ALPHA = %x41-5A / %x61-7A ; A-Z / a-z
235274
DIGIT = %x30-39

src/librustdoc/clean/types.rs

+44
Original file line numberDiff line numberDiff line change
@@ -1651,6 +1651,13 @@ impl Type {
16511651
}
16521652
}
16531653

1654+
pub(crate) fn generic_args(&self) -> Option<&GenericArgs> {
1655+
match self {
1656+
Type::Path { path, .. } => path.generic_args(),
1657+
_ => None,
1658+
}
1659+
}
1660+
16541661
pub(crate) fn generics(&self) -> Option<Vec<&Type>> {
16551662
match self {
16561663
Type::Path { path, .. } => path.generics(),
@@ -2191,6 +2198,10 @@ impl Path {
21912198
}
21922199
}
21932200

2201+
pub(crate) fn generic_args(&self) -> Option<&GenericArgs> {
2202+
self.segments.last().map(|seg| &seg.args)
2203+
}
2204+
21942205
pub(crate) fn generics(&self) -> Option<Vec<&Type>> {
21952206
self.segments.last().and_then(|seg| {
21962207
if let GenericArgs::AngleBracketed { ref args, .. } = seg.args {
@@ -2232,6 +2243,39 @@ impl GenericArgs {
22322243
GenericArgs::Parenthesized { inputs, output } => inputs.is_empty() && output.is_none(),
22332244
}
22342245
}
2246+
pub(crate) fn bindings<'a>(&'a self) -> Box<dyn Iterator<Item = TypeBinding> + 'a> {
2247+
match self {
2248+
&GenericArgs::AngleBracketed { ref bindings, .. } => Box::new(bindings.iter().cloned()),
2249+
&GenericArgs::Parenthesized { ref output, .. } => Box::new(
2250+
output
2251+
.as_ref()
2252+
.map(|ty| TypeBinding {
2253+
assoc: PathSegment {
2254+
name: sym::Output,
2255+
args: GenericArgs::AngleBracketed {
2256+
args: Vec::new().into_boxed_slice(),
2257+
bindings: ThinVec::new(),
2258+
},
2259+
},
2260+
kind: TypeBindingKind::Equality { term: Term::Type((**ty).clone()) },
2261+
})
2262+
.into_iter(),
2263+
),
2264+
}
2265+
}
2266+
}
2267+
2268+
impl<'a> IntoIterator for &'a GenericArgs {
2269+
type IntoIter = Box<dyn Iterator<Item = GenericArg> + 'a>;
2270+
type Item = GenericArg;
2271+
fn into_iter(self) -> Self::IntoIter {
2272+
match self {
2273+
&GenericArgs::AngleBracketed { ref args, .. } => Box::new(args.iter().cloned()),
2274+
&GenericArgs::Parenthesized { ref inputs, .. } => {
2275+
Box::new(inputs.iter().cloned().map(GenericArg::Type))
2276+
}
2277+
}
2278+
}
22352279
}
22362280

22372281
#[derive(Clone, PartialEq, Eq, Debug, Hash)]

src/librustdoc/formats/cache.rs

+1
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> {
369369
&item,
370370
self.tcx,
371371
clean_impl_generics(self.cache.parent_stack.last()).as_ref(),
372+
parent,
372373
self.cache,
373374
),
374375
aliases: item.attrs.get_doc_aliases(),

src/librustdoc/formats/item_type.rs

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ pub(crate) enum ItemType {
4949
ProcAttribute = 23,
5050
ProcDerive = 24,
5151
TraitAlias = 25,
52+
// This number is reserved for use in JavaScript
53+
// Generic = 26,
5254
}
5355

5456
impl Serialize for ItemType {

src/librustdoc/html/render/mod.rs

+34-5
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ pub(crate) struct IndexItem {
113113
pub(crate) struct RenderType {
114114
id: Option<RenderTypeId>,
115115
generics: Option<Vec<RenderType>>,
116+
bindings: Option<Vec<(RenderTypeId, Vec<RenderType>)>>,
116117
}
117118

118119
impl Serialize for RenderType {
@@ -129,24 +130,47 @@ impl Serialize for RenderType {
129130
Some(RenderTypeId::Index(idx)) => *idx,
130131
_ => panic!("must convert render types to indexes before serializing"),
131132
};
132-
if let Some(generics) = &self.generics {
133+
if self.generics.is_some() || self.bindings.is_some() {
133134
let mut seq = serializer.serialize_seq(None)?;
134135
seq.serialize_element(&id)?;
135-
seq.serialize_element(generics)?;
136+
seq.serialize_element(self.generics.as_ref().map(Vec::as_slice).unwrap_or_default())?;
137+
if self.bindings.is_some() {
138+
seq.serialize_element(
139+
self.bindings.as_ref().map(Vec::as_slice).unwrap_or_default(),
140+
)?;
141+
}
136142
seq.end()
137143
} else {
138144
id.serialize(serializer)
139145
}
140146
}
141147
}
142148

143-
#[derive(Clone, Debug)]
149+
#[derive(Clone, Copy, Debug)]
144150
pub(crate) enum RenderTypeId {
145151
DefId(DefId),
146152
Primitive(clean::PrimitiveType),
153+
AssociatedType(Symbol),
147154
Index(isize),
148155
}
149156

157+
impl Serialize for RenderTypeId {
158+
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
159+
where
160+
S: Serializer,
161+
{
162+
let id = match &self {
163+
// 0 is a sentinel, everything else is one-indexed
164+
// concrete type
165+
RenderTypeId::Index(idx) if *idx >= 0 => idx + 1,
166+
// generic type parameter
167+
RenderTypeId::Index(idx) => *idx,
168+
_ => panic!("must convert render types to indexes before serializing"),
169+
};
170+
id.serialize(serializer)
171+
}
172+
}
173+
150174
/// Full type of functions/methods in the search index.
151175
#[derive(Debug)]
152176
pub(crate) struct IndexItemFunctionType {
@@ -171,17 +195,22 @@ impl Serialize for IndexItemFunctionType {
171195
} else {
172196
let mut seq = serializer.serialize_seq(None)?;
173197
match &self.inputs[..] {
174-
[one] if one.generics.is_none() => seq.serialize_element(one)?,
198+
[one] if one.generics.is_none() && one.bindings.is_none() => {
199+
seq.serialize_element(one)?
200+
}
175201
_ => seq.serialize_element(&self.inputs)?,
176202
}
177203
match &self.output[..] {
178204
[] if self.where_clause.is_empty() => {}
179-
[one] if one.generics.is_none() => seq.serialize_element(one)?,
205+
[one] if one.generics.is_none() && one.bindings.is_none() => {
206+
seq.serialize_element(one)?
207+
}
180208
_ => seq.serialize_element(&self.output)?,
181209
}
182210
for constraint in &self.where_clause {
183211
if let [one] = &constraint[..]
184212
&& one.generics.is_none()
213+
&& one.bindings.is_none()
185214
{
186215
seq.serialize_element(one)?;
187216
} else {

0 commit comments

Comments
 (0)