Column

Type Alias Column 

Source
pub type Column = Value;
Expand description

The Column type

Aliased Type§

pub enum Column {
    Null,
    Integer(i64),
    Real(f64),
    Text(String),
    Blob(Vec<u8>),
}

Variants§

§

Null

The value is a NULL value.

§

Integer(i64)

The value is a signed integer.

§

Real(f64)

The value is a floating point number.

§

Text(String)

The value is a text string.

§

Blob(Vec<u8>)

The value is a blob of data