pub unsafe extern "rust-intrinsic" fn init<T>() -> T
Creates a value initialized to zero.
init
is unsafe because it returns a zeroed-out datum, which is unsafe unless T is Copy
. Also, even if T is Copy
, an all-zero value may not correspond to any legitimate state for the type in question.
© 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.init.html