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
Even though the uninitialized field is private, it still gets dropped. For example nix::sys::socket::CmsgSpace::<String>::new(); easily causes a segfault.
The field should probably be ManuallyDrop<T>, or there should be a T: Copy bound.