Struct assembly_fdb::file::FDBColumnHeader
pub struct FDBColumnHeader {
pub column_data_type: u32,
pub column_name_addr: u32,
}
Expand description
The header of a column (field-of-row) definition
This struct contains information on the name and data type of a column.
It is always an element of the array pointed to by the FDBTableDefHeader
.
Fields§
§column_data_type: u32
The numeric identifier of the data type.
column_name_addr: u32
The offset of the (null-terminated) name.
Trait Implementations§
§impl Clone for FDBColumnHeader
impl Clone for FDBColumnHeader
§fn clone(&self) -> FDBColumnHeader
fn clone(&self) -> FDBColumnHeader
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for FDBColumnHeader
impl Debug for FDBColumnHeader
§impl PartialEq<FDBColumnHeader> for FDBColumnHeader
impl PartialEq<FDBColumnHeader> for FDBColumnHeader
§fn eq(&self, other: &FDBColumnHeader) -> bool
fn eq(&self, other: &FDBColumnHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.