pub type gaiaDbfField = gaiaDbfFieldStruct;Expand description
Container for DBF field
Aliased Type§
struct gaiaDbfField {
pub Name: *mut i8,
pub Type: u8,
pub Offset: i32,
pub Length: u8,
pub Decimals: u8,
pub Value: *mut gaiaValueStruct,
pub Next: *mut gaiaDbfFieldStruct,
}Fields§
§Name: *mut i8field name
Type: u8DBF data type
Offset: i32DBF buffer offset [where the field value starts]
Length: u8total DBF buffer field length (in bytes)
Decimals: u8precision (decimal digits)
Value: *mut gaiaValueStructcurrent variant [multi-type] value
Next: *mut gaiaDbfFieldStructpointer to next item [linked list]