min_align_of_val

Function min_align_of_val 

1.0.0
pub fn min_align_of_val<T>(val: &T) -> usize
where T: ?Sized,
๐Ÿ‘ŽDeprecated since 1.2.0: use align_of_val instead
Expand description

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 std::mem;

assert_eq!(4, mem::min_align_of_val(&5i32));