pub unsafe extern "rust-intrinsic" fn uninit<T>() -> T
Creates an uninitialized value.
uninit
is unsafe because there is no guarantee of what its contents are. In particular its drop-flag may be set to any state, which means it may claim either dropped or undropped. In the general case one must use ptr::write
to initialize memory previous set to the result of uninit
.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/intrinsics/fn.uninit.html