pub const unsafe fn min_align_of_val<T>(_ptr: *const T) -> usize ⓘwhere
T: ?Sized,
🔬This is a nightly-only experimental API. (
core_intrinsics
)Available on crate feature
std
only.Expand description
The required alignment of the referenced value.
The stabilized version of this intrinsic is core::mem::align_of_val
.
§Safety
See crate::mem::align_of_val_raw
for safety conditions.