pub trait ArrayNotAssign<T, const N: usize>: ArrayMapAssign<T, N> {
// Required methods
const fn not_assign_all(&mut self)
where T: Not<Output = T>;
const async fn not_assign_all_async(&mut self)
where T: Not<Output = T>;
}Required Methods§
Sourceconst fn not_assign_all(&mut self)where
T: Not<Output = T>,
const fn not_assign_all(&mut self)where
T: Not<Output = T>,
Sourceconst async fn not_assign_all_async(&mut self)where
T: Not<Output = T>,
const async fn not_assign_all_async(&mut self)where
T: Not<Output = T>,
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.