Enum mentat_query_sql::Values [] [src]

pub enum Values {
    Unnamed(usizeVec<TypedValue>),
    Named(Vec<Variable>, Vec<TypedValue>),
}

Variants

Like "VALUES (0, 1), (2, 3), ...". The vector must be of a length that is a multiple of the given size.

Like "SELECT 0 AS x, SELECT 0 AS y WHERE 0 UNION ALL VALUES (0, 1), (2, 3), ...". The vector of values must be of a length that is a multiple of the length of the vector of names.

Trait Implementations

impl QueryFragment for Values
[src]

Auto Trait Implementations

impl !Send for Values

impl !Sync for Values