Trait photon_indexer::migration::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,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

source§

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

source§

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

source§

impl<U, V, W, X, Y, Z> FromValueTuple for (U, V, W, X, Y, Z)

source§

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

Implementors§

source§

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