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