pub(crate) unsafe auto trait Freeze { }
Expand description
Compiler-internal trait used to determine whether a type contains
any UnsafeCell
internally, but not through an indirection.
This affects, for example, whether a static
of that type is
placed in read-only static memory or writable static memory.