pub trait ToRow {
fn to_row(self) -> Vec<Value>;
}
Required Methods
Implementors
impl<'a, T: ToRow + Clone> ToRow for &'a T
impl ToRow for Vec<Value>
impl<'a> ToRow for &'a [&'a ToValue]
impl ToRow for ()
impl<A: IntoValue> ToRow for (A,)
impl<A: IntoValue, B: IntoValue> ToRow for (A, B)
impl<A: IntoValue, B: IntoValue, C: IntoValue> ToRow for (A, B, C)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue> ToRow for (A, B, C, D)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue> ToRow for (A, B, C, D, E)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue> ToRow for (A, B, C, D, E, F)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue> ToRow for (A, B, C, D, E, F, G)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue> ToRow for (A, B, C, D, E, F, G, H)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue, J: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I, J)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue, J: IntoValue, K: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I, J, K)
impl<A: IntoValue, B: IntoValue, C: IntoValue, D: IntoValue, E: IntoValue, F: IntoValue, G: IntoValue, H: IntoValue, I: IntoValue, J: IntoValue, K: IntoValue, L: IntoValue> ToRow for (A, B, C, D, E, F, G, H, I, J, K, L)