pub fn is_vec_aligned<T>(vec: &[T], alignment: usize) -> bool
Check if a Vec’s data is aligned
Note: Vec doesn’t guarantee alignment, so this may return false. For guaranteed alignment, use AlignedBuffer instead.