We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
trait Any
1 parent cf51e55 commit 8fcc5bdCopy full SHA for 8fcc5bd
src/libcore/any.rs
@@ -83,11 +83,12 @@ use marker::{Reflect, Sized};
83
// Any trait
84
///////////////////////////////////////////////////////////////////////////////
85
86
-/// A type to emulate dynamic typing. See the [module-level documentation][mod] for more details.
+/// A type to emulate dynamic typing.
87
///
88
/// Every type with no non-`'static` references implements `Any`.
89
+/// See the [module-level documentation][mod] for more details.
90
-/// [mod]: ../index.html
91
+/// [mod]: index.html
92
#[stable(feature = "rust1", since = "1.0.0")]
93
pub trait Any: Reflect + 'static {
94
/// Get the `TypeId` of `self`
0 commit comments