pub trait IntupleRef<'intuple> {
type Tuple;
type TupleMut;
// Required methods
fn as_tuple_ref(&'intuple self) -> Self::Tuple;
fn as_tuple_ref_mut(&'intuple mut self) -> Self::TupleMut;
}pub trait IntupleRef<'intuple> {
type Tuple;
type TupleMut;
// Required methods
fn as_tuple_ref(&'intuple self) -> Self::Tuple;
fn as_tuple_ref_mut(&'intuple mut self) -> Self::TupleMut;
}