W3cubDocs

/Rust

Function std::mem::min_align_of_val

pub fn min_align_of_val<T>(val: &T) -> usize where    T: ?Sized, 
👎 Deprecated since 1.2.0: use align_of_val instead

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

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));

© 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_val.html