File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -975,9 +975,15 @@ pub trait UpperHex {
975975/// `p` formatting.
976976///
977977/// The `Pointer` trait should format its output as a memory location. This is commonly presented
978- /// as hexadecimal.
978+ /// as hexadecimal. For more information on formatters, see [the module-level documentation][module].
979979///
980- /// For more information on formatters, see [the module-level documentation][module].
980+ /// Printing of pointers is not a reliable way to discover how Rust programs are implemented.
981+ /// The act of reading an address changes the program itself, and may change how the data is represented
982+ /// in memory, and what optimizations are applied to the code.
983+ ///
984+ /// The printed pointer values are not guaranteed to be stable nor unique identifiers of objects.
985+ /// Rust allows moving values to different memory locations, and may reuse the same memory locations
986+ /// for different purposes.
981987///
982988/// [module]: ../../std/fmt/index.html
983989///
You can’t perform that action at this time.
0 commit comments