@@ -237,7 +237,7 @@ pub struct SearchQuery<'a> {
237
237
pub filter : Option < Filter < ' a > > ,
238
238
/// Facets for which to retrieve the matching count.
239
239
///
240
- /// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
240
+ /// Can be set to a [wildcard value](enum.Selectors.html #variant.All) that will select all existing attributes.
241
241
///
242
242
/// **Default: all attributes found in the documents.**
243
243
#[ serde( skip_serializing_if = "Option::is_none" ) ]
@@ -248,7 +248,7 @@ pub struct SearchQuery<'a> {
248
248
pub sort : Option < & ' a [ & ' a str ] > ,
249
249
/// Attributes to display in the returned documents.
250
250
///
251
- /// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
251
+ /// Can be set to a [wildcard value](enum.Selectors.html #variant.All) that will select all existing attributes.
252
252
///
253
253
/// **Default: all attributes found in the documents.**
254
254
#[ serde( skip_serializing_if = "Option::is_none" ) ]
@@ -258,7 +258,7 @@ pub struct SearchQuery<'a> {
258
258
///
259
259
/// Attributes are composed by the attribute name and an optional `usize` that overwrites the `crop_length` parameter.
260
260
///
261
- /// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
261
+ /// Can be set to a [wildcard value](enum.Selectors.html #variant.All) that will select all existing attributes.
262
262
#[ serde( skip_serializing_if = "Option::is_none" ) ]
263
263
#[ serde( serialize_with = "serialize_attributes_to_crop_with_wildcard" ) ]
264
264
pub attributes_to_crop : Option < Selectors < & ' a [ AttributeToCrop < ' a > ] > > ,
@@ -278,7 +278,7 @@ pub struct SearchQuery<'a> {
278
278
pub crop_marker : Option < & ' a str > ,
279
279
/// Attributes whose values will contain **highlighted matching terms**.
280
280
///
281
- /// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
281
+ /// Can be set to a [wildcard value](enum.Selectors.html #variant.All) that will select all existing attributes.
282
282
#[ serde( skip_serializing_if = "Option::is_none" ) ]
283
283
#[ serde( serialize_with = "serialize_with_wildcard" ) ]
284
284
pub attributes_to_highlight : Option < Selectors < & ' a [ & ' a str ] > > ,
0 commit comments