pub trait TupleSplit8Parts {
type OutTuple;
// Required method
fn split_8_parts(self) -> Self::OutTuple;
}Expand description
Split into 8 parts
Required Associated Types§
Required Methods§
Sourcefn split_8_parts(self) -> Self::OutTuple
fn split_8_parts(self) -> Self::OutTuple
Split into 8 parts
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".