Trait sea_query::value::IntoValueTuple[][src]

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

Required methods

Implementations on Foreign Types

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

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

Implementors

impl<V> IntoValueTuple for V where
    V: Into<Value>, 
[src]