pub trait AsTuple: Sealed {
type Res;
// Required method
fn as_tuple(self) -> Self::Res;
}Expand description
Trait to allow for turning Vector and &Vector into tuples
pub trait AsTuple: Sealed {
type Res;
// Required method
fn as_tuple(self) -> Self::Res;
}Trait to allow for turning Vector and &Vector into tuples