pub trait SupportedMinimumAlignment: Sealed + Copy { }
Expand description
Statically guarantees that a minimum alignment is marked as supported.
This trait is sealed: the list of implementors below is total. Users do not have the ability to mark additional
MinimumAlignment<N>
values as supported. Only bump allocators with the supported minimum alignments are constructable.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.