pub trait FromValueTuple: Sized {
    // Required method
    fn from_value_tuple<I>(i: I) -> Self
       where I: IntoValueTuple;
}

Required Methods§

source

fn from_value_tuple<I>(i: I) -> Selfwhere I: IntoValueTuple,

Implementations on Foreign Types§

source§

impl<U, V, W, X> FromValueTuple for (U, V, W, X)where U: Into<Value> + ValueType, V: Into<Value> + ValueType, W: Into<Value> + ValueType, X: Into<Value> + ValueType,

source§

fn from_value_tuple<I>(i: I) -> Selfwhere I: IntoValueTuple,

source§

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

source§

fn from_value_tuple<I>(i: I) -> Selfwhere I: IntoValueTuple,

source§

impl<V, W> FromValueTuple for (V, W)where V: Into<Value> + ValueType, W: Into<Value> + ValueType,

source§

fn from_value_tuple<I>(i: I) -> Selfwhere I: IntoValueTuple,

source§

impl<U, V, W> FromValueTuple for (U, V, W)where U: Into<Value> + ValueType, V: Into<Value> + ValueType, W: Into<Value> + ValueType,

source§

fn from_value_tuple<I>(i: I) -> Selfwhere I: IntoValueTuple,

source§

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

source§

fn from_value_tuple<I>(i: I) -> Selfwhere I: IntoValueTuple,

Implementors§

source§

impl<V> FromValueTuple for Vwhere V: Into<Value> + ValueType,