pub unsafe trait MinimallyAligned: Sized { }
Expand description

Asserts that the type has a minimal ABI alignment of 1

Safety

Implementor need to verify that std::mem::align_of::<Self>() == 1

Implementors§