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