Function core::mem::align_of 1.0.0
[−]
[src]
pub fn 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.
Examples
fn main() { use std::mem; assert_eq!(4, mem::align_of::<i32>()); }use std::mem; assert_eq!(4, mem::align_of::<i32>());Run