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