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