Function std::mem::min_align_of_valStable [-] [+] [src]

pub fn min_align_of_val<T>(_val: &T) -> usize

Returns the ABI-required minimum alignment of the type of the value that _val points to

Examples

fn main() { use std::mem; assert_eq!(4, mem::min_align_of_val(&5i32)); }
use std::mem;

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