Function min_align_of
fn min_align_of<T>() -> usize
Returns the ABI-required minimum alignment of a type in bytes.
Every reference to a value of the type T must be a multiple of this number.
This is the alignment used for struct fields. It may be smaller than the preferred alignment.
Examples
#
use mem;
assert_eq!;