Trait TupleConvert
pub trait TupleConvert<C, Into: Tuple> {
// Required method
fn convert(self) -> Into;
}Available on crate features
tuple and tuple-convert only.Required Methods§
fn convert(self) -> Into
Implementations on Foreign Types§
§impl<'l, C, S, T> TupleConvert<C, (T,)> for &'l (S,)
This trait is implemented for pairs of tuples up to 21 items long
impl<'l, C, S, T> TupleConvert<C, (T,)> for &'l (S,)
This trait is implemented for pairs of tuples up to 21 items long
§impl<'l, C, S, T> TupleConvert<C, (T,)> for &'l mut (S,)
This trait is implemented for pairs of tuples up to 21 items long
impl<'l, C, S, T> TupleConvert<C, (T,)> for &'l mut (S,)
This trait is implemented for pairs of tuples up to 21 items long
§impl<C, S, T> TupleConvert<C, (T,)> for (S₁, S₂, …, Sₙ)where
C: Converter<S, T>,
This trait is implemented for pairs of tuples up to 21 items long
impl<C, S, T> TupleConvert<C, (T,)> for (S₁, S₂, …, Sₙ)where
C: Converter<S, T>,
This trait is implemented for pairs of tuples up to 21 items long