Function min_align_of_val
Deprecated since 1.2.0: use `align_of_val` instead
#[must_use]
pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize
Returns the ABI-required minimum alignment of the type of the value that val points to in
bytes.
Every reference to a value of the type T must be a multiple of this number.
Examples
#
use mem;
assert_eq!;