Trait split_array::SplitArrayRaw
source · pub trait SplitArrayRaw<const LEN: usize> {
type Output<const OUT_SIZE: usize>: SplitArrayRaw<OUT_SIZE>;
// Required method
unsafe fn split_arr_raw<const LEFT: usize>(
self
) -> (Self::Output<LEFT>, Self::Output<{ _ }>)
where (): True<{ _ }>;
}Expand description
Raw version of SplitArray.
Required Associated Types§
sourcetype Output<const OUT_SIZE: usize>: SplitArrayRaw<OUT_SIZE>
type Output<const OUT_SIZE: usize>: SplitArrayRaw<OUT_SIZE>
The result of a split.
Required Methods§
Object Safety§
This trait is not object safe.