Type Alias assembly_fdb::value::file::FDBFieldValue

source ·
pub type FDBFieldValue = Value<FileContext>;
Expand description

A database field value repr

Aliased Type§

enum FDBFieldValue {
    Nothing,
    Integer(i32),
    Float(f32),
    Text(IndirectValue),
    Boolean(bool),
    BigInt(IndirectValue),
    VarChar(IndirectValue),
}

Variants§

§

Nothing

The NULL value

§

Integer(i32)

A 32 bit integer

§

Float(f32)

A 32 bit IEEE floating point number

§

Text(IndirectValue)

A string

§

Boolean(bool)

A boolean

§

BigInt(IndirectValue)

A 64 bit integer

§

VarChar(IndirectValue)

A (XML?) string