pub fn min_align_of<T>() -> usize
Returns the ABI-required minimum alignment of a type.
Every valid address of 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.
use std::mem; assert_eq!(4, mem::min_align_of::<i32>());
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/mem/fn.min_align_of.html