Trait FromValueTuple

Source
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) -> Self
where I: IntoValueTuple,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T0, T1, T2, T3> FromValueTuple for (T0, T1, T2, T3)
where T0: Into<Value> + ValueType, T1: Into<Value> + ValueType, T2: Into<Value> + ValueType, T3: Into<Value> + ValueType,

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

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

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5> FromValueTuple for (T0, T1, T2, T3, T4, T5)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5, T6> FromValueTuple for (T0, T1, T2, T3, T4, T5, T6)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> FromValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> FromValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> FromValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> FromValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> FromValueTuple for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

Source§

fn from_value_tuple<Z>(i: Z) -> Self
where Z: IntoValueTuple,

Source§

impl<U, V, W> FromValueTuple for (U, V, W)

Source§

fn from_value_tuple<I>(i: I) -> Self
where 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) -> Self
where I: IntoValueTuple,

Implementors§

Source§

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