Skip to main content

RowOwned

Type Alias RowOwned 

Source
pub type RowOwned = Row<'static>;
Expand description

Owned Row — values are Value<'static>. Used everywhere a row must outlive a query-scoped arena.

Aliased Type§

pub struct RowOwned {
    pub values: Vec<Value<'static>>,
}

Fields§

§values: Vec<Value<'static>>