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

Required Methods§

Implementations on Foreign Types§

§

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

§

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

§

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

§

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

§

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

Implementors§

§

impl IntoValueTuple for ValueTuple

§

impl<V> IntoValueTuple for Vwhere V: Into<Value>,