|
1 | 1 | use crate::{ |
2 | | - array::array_debug, enums::enum_debug, list_debug, map_debug, set_debug, struct_debug, |
| 2 | + array::array_debug, enums::enum_debug, list::list_debug, map_debug, set_debug, struct_debug, |
3 | 3 | tuple_debug, tuple_struct_debug, DynamicTypePath, DynamicTyped, OpaqueInfo, ReflectCloneError, |
4 | 4 | ReflectKind, ReflectKindMismatchError, ReflectMut, ReflectOwned, ReflectRef, TypeInfo, |
5 | 5 | TypePath, Typed, |
@@ -115,7 +115,7 @@ where |
115 | 115 | /// performant for such use cases. |
116 | 116 | /// |
117 | 117 | /// [`DynamicStruct`]: crate::DynamicStruct |
118 | | - /// [`DynamicList`]: crate::DynamicList |
| 118 | + /// [`DynamicList`]: crate::list::DynamicList |
119 | 119 | /// [`TypeRegistry::get_type_info`]: crate::TypeRegistry::get_type_info |
120 | 120 | fn get_represented_type_info(&self) -> Option<&'static TypeInfo>; |
121 | 121 |
|
@@ -186,11 +186,11 @@ where |
186 | 186 | /// [`TupleStruct`]: crate::TupleStruct |
187 | 187 | /// [`Tuple`]: crate::Tuple |
188 | 188 | /// [`Enum`]: crate::enums::Enum |
189 | | - /// [`List`]: crate::List |
| 189 | + /// [`List`]: crate::list::List |
190 | 190 | /// [`Array`]: crate::array::Array |
191 | 191 | /// [`Map`]: crate::Map |
192 | 192 | /// [`Set`]: crate::Set |
193 | | - /// [`list_apply`]: crate::list_apply |
| 193 | + /// [`list_apply`]: crate::list::list_apply |
194 | 194 | /// [`map_apply`]: crate::map_apply |
195 | 195 | /// [`set_apply`]: crate::set_apply |
196 | 196 | /// |
@@ -265,9 +265,9 @@ where |
265 | 265 | /// ``` |
266 | 266 | /// |
267 | 267 | /// [kind]: PartialReflect::reflect_kind |
268 | | - /// [`List`]: crate::List |
269 | | - /// [`List::to_dynamic_list`]: crate::List::to_dynamic_list |
270 | | - /// [`DynamicList`]: crate::DynamicList |
| 268 | + /// [`List`]: crate::list::List |
| 269 | + /// [`List::to_dynamic_list`]: crate::list::List::to_dynamic_list |
| 270 | + /// [`DynamicList`]: crate::list::DynamicList |
271 | 271 | /// [`Struct`]: crate::Struct |
272 | 272 | /// [`Struct::to_dynamic_struct`]: crate::Struct::to_dynamic_struct |
273 | 273 | /// [`DynamicStruct`]: crate::DynamicStruct |
@@ -352,7 +352,7 @@ where |
352 | 352 | /// (e.g. [`List`], [`Map`]), will default to the format: `"Reflect(type_path)"`, |
353 | 353 | /// where `type_path` is the [type path] of the underlying type. |
354 | 354 | /// |
355 | | - /// [`List`]: crate::List |
| 355 | + /// [`List`]: crate::list::List |
356 | 356 | /// [`Map`]: crate::Map |
357 | 357 | /// [type path]: TypePath::type_path |
358 | 358 | fn debug(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
@@ -381,7 +381,7 @@ where |
381 | 381 | /// By default, this method will return `false`. |
382 | 382 | /// |
383 | 383 | /// [`DynamicStruct`]: crate::DynamicStruct |
384 | | - /// [`DynamicList`]: crate::DynamicList |
| 384 | + /// [`DynamicList`]: crate::list::DynamicList |
385 | 385 | /// [`DynamicTuple`]: crate::DynamicTuple |
386 | 386 | fn is_dynamic(&self) -> bool { |
387 | 387 | false |
|
0 commit comments