Skip to content

Commit b08ab1e

Browse files
authored
Add warning about varying hashes/orderings
1 parent 6365c43 commit b08ab1e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/libcore/any.rs

+4
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,10 @@ impl Any+Send {
338338
///
339339
/// A `TypeId` is currently only available for types which ascribe to `'static`,
340340
/// but this limitation may be removed in the future.
341+
///
342+
/// While `TypeId` implements `Hash`, `PartialOrd`, and `Ord`, it is worth
343+
/// noting that the hashes and ordering will vary between Rust releases. Beware
344+
/// of relying on them outside of your code!
341345
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)]
342346
#[stable(feature = "rust1", since = "1.0.0")]
343347
pub struct TypeId {

0 commit comments

Comments
 (0)