IntoInsertRow

Trait IntoInsertRow 

Source
pub trait IntoInsertRow {
    // Required method
    fn into_insert_row(self) -> Result<RuntimeInsertRowKind>;
}

Required Methods§

Source

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Implementations on Foreign Types§

Source§

impl<T1> IntoInsertRow for (T1,)
where T1: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T1, T2> IntoInsertRow for (T1, T2)
where T1: Into<PlanValue>, T2: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T1, T2, T3> IntoInsertRow for (T1, T2, T3)
where T1: Into<PlanValue>, T2: Into<PlanValue>, T3: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T1, T2, T3, T4> IntoInsertRow for (T1, T2, T3, T4)
where T1: Into<PlanValue>, T2: Into<PlanValue>, T3: Into<PlanValue>, T4: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T1, T2, T3, T4, T5> IntoInsertRow for (T1, T2, T3, T4, T5)
where T1: Into<PlanValue>, T2: Into<PlanValue>, T3: Into<PlanValue>, T4: Into<PlanValue>, T5: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T1, T2, T3, T4, T5, T6> IntoInsertRow for (T1, T2, T3, T4, T5, T6)
where T1: Into<PlanValue>, T2: Into<PlanValue>, T3: Into<PlanValue>, T4: Into<PlanValue>, T5: Into<PlanValue>, T6: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T1, T2, T3, T4, T5, T6, T7> IntoInsertRow for (T1, T2, T3, T4, T5, T6, T7)
where T1: Into<PlanValue>, T2: Into<PlanValue>, T3: Into<PlanValue>, T4: Into<PlanValue>, T5: Into<PlanValue>, T6: Into<PlanValue>, T7: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

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

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T> IntoInsertRow for Vec<T>
where T: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Source§

impl<T, const N: usize> IntoInsertRow for [T; N]
where T: Into<PlanValue>,

Source§

fn into_insert_row(self) -> Result<RuntimeInsertRowKind>

Implementors§