You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mem::uninitialized is deprecated, as it is known to cause immediate undefined behaviour. To allow users to work with uninitialized memory in a memory-safe manner, MaybeUninit (tracking issue rust-lang/rust#53491) was stabilized in Rust 1.36. A previous attempt to update this crate to use MaybeUninit, #1230, was rejected since it would change the MSRV for an internal-only change. However, the MSRV was bumped to 1.36 in #1400, which means that this change can now be landed.
The text was updated successfully, but these errors were encountered:
mem::uninitialized
is deprecated, as it is known to cause immediate undefined behaviour. To allow users to work with uninitialized memory in a memory-safe manner,MaybeUninit
(tracking issue rust-lang/rust#53491) was stabilized in Rust 1.36. A previous attempt to update this crate to useMaybeUninit
, #1230, was rejected since it would change the MSRV for an internal-only change. However, the MSRV was bumped to 1.36 in #1400, which means that this change can now be landed.The text was updated successfully, but these errors were encountered: