pub unsafe trait AlwaysAligned { }Expand description
Types whose values are always aligned, i.e. with an alignment of 1.
This trait is safely derivable with #[derive(AlwaysAligned)] when the
derive feature is enabled.
§Safety
It is undefined behaviour to implement this trait for any type whose alignment is not equal to 1.