pub unsafe trait FromBytes { }
Expand description
Types for which any bit pattern is valid.
Not all types are valid for all values. For example, a bool
must be either zero or one, so
reading arbitrary bytes into something that contains a bool
is not okay.
It’s okay for the type to have padding, as initializing those bytes has no effect.
§Safety
All bit-patterns must be valid for this type. This type must not have interior mutability.