Type Alias ArgValue

Source
pub type ArgValue = ArgValue;
Expand description

Statement query/execute argument value.

Aliased Type§

pub enum ArgValue {
    I64(i64),
    F64(f64),
    String(String),
    Bytes(Vec<u8>),
    Null,
}

Variants§

§

I64(i64)

§

F64(f64)

§

String(String)

§

Bytes(Vec<u8>)

§

Null