pub trait TupleLend<'a> {
type First: 'a;
type Second: 'a;
// Required method
fn tuple_lend(self) -> (Self::First, Self::Second);
}Expand description
Trait for lend types that can be destructured into two components, used
by Lender::unzip() and
FallibleLender::unzip().
Implemented for (A, B), &(A, B), and &mut (A, B).