pub trait IntoValueTuple {
    // Required method
    fn into_value_tuple(self) -> ValueTuple;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<T0, T1, T2, T3> IntoValueTuple for (T0, T1, T2, T3)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>,

source§

impl<T0, T1, T2, T3, T4> IntoValueTuple for (T0, T1, T2, T3, T4)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5> IntoValueTuple for (T0, T1, T2, T3, T4, T5)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5, T6> IntoValueTuple for (T0, T1, T2, T3, T4, T5, T6)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>, T6: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> IntoValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>, T6: Into<Value>, T7: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> IntoValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>, T6: Into<Value>, T7: Into<Value>, T8: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> IntoValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>, T6: Into<Value>, T7: Into<Value>, T8: Into<Value>, T9: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> IntoValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>, T6: Into<Value>, T7: Into<Value>, T8: Into<Value>, T9: Into<Value>, T10: Into<Value>,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> IntoValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)
where T0: Into<Value>, T1: Into<Value>, T2: Into<Value>, T3: Into<Value>, T4: Into<Value>, T5: Into<Value>, T6: Into<Value>, T7: Into<Value>, T8: Into<Value>, T9: Into<Value>, T10: Into<Value>, T11: Into<Value>,

source§

impl<U, V, W> IntoValueTuple for (U, V, W)
where U: Into<Value>, V: Into<Value>, W: Into<Value>,

source§

impl<V, W> IntoValueTuple for (V, W)
where V: Into<Value>, W: Into<Value>,

Implementors§