pub trait SplitArrayRawMut<const LEN: usize> {
type Output<const OUT_SIZE: usize>: SplitArrayRawMut<OUT_SIZE>;
// Required method
unsafe fn split_arr_raw_mut<const LEFT: usize>(
self,
) -> (Self::Output<LEFT>, Self::Output<{ _ }>)
where [(); { _ }]:;
}
Expand description
Raw mutable version of SplitArray
.
Required Associated Types§
type Output<const OUT_SIZE: usize>: SplitArrayRawMut<OUT_SIZE>
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.