Trait split_array::SplitArrayRawMut
source · 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 (): True<{ _ }>;
}Expand description
Raw mutable version of SplitArray.
Required Associated Types§
type Output<const OUT_SIZE: usize>: SplitArrayRawMut<OUT_SIZE>
Required Methods§
Object Safety§
This trait is not object safe.