Function core::mem::min_align_of [] [src]

pub fn min_align_of<T>() -> usize
Deprecated since 1.2.0

: use align_of instead

Returns the ABI-required minimum alignment of a type

This is the alignment used for struct fields. It may be smaller than the preferred alignment.

Examples

fn main() { #![allow(deprecated)] use std::mem; assert_eq!(4, mem::min_align_of::<i32>()); }
use std::mem;

assert_eq!(4, mem::min_align_of::<i32>());