pub trait AlignedAllocable:
Zero
+ Clone
+ Copy
+ Sized {
// Required method
unsafe fn alloc(n: usize) -> *mut Self;
}Expand description
Allocate SIMD-aligned memory of Real/Complex type
Required Methods§
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.