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