Skip to main content

RowValues

Trait RowValues 

Source
pub trait RowValues {
    type Values;

    // Required method
    fn into_values(self) -> Self::Values;
}
Expand description

A row’s fields as a plain tuple, in selection order.

Required Associated Types§

Required Methods§

Source

fn into_values(self) -> Self::Values

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl RowValues for RowNil

Source§

impl<K, V, Tail> RowValues for RowCons<K, V, Tail>
where Tail: RowValues, Tail::Values: Prepend<V>,

Source§

type Values = <<Tail as RowValues>::Values as Prepend<V>>::Output