Trait IntoValueTuple

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

Required Methods§

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

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>,

Source§

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>,

Source§

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

Implementors§