pub unsafe trait MemsetSafe: Copy { }Expand description
A marker trait for types that are safe to memset.
§Safety
Just like with C’s memset, bad things happen
if you use this with non-trivial types.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.