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