Struct assembly_fdb::file::FDBTableHeader
pub struct FDBTableHeader {
pub table_def_header_addr: u32,
pub table_data_header_addr: u32,
}
Expand description
The header of a table.
This struct is used in the global TableHeader list and contains the offsets of the two structures that define the definition and content of the tables.
Fields§
§table_def_header_addr: u32
The offset of this table definition header.
table_data_header_addr: u32
The offset of the table data header.
Trait Implementations§
§impl Clone for FDBTableHeader
impl Clone for FDBTableHeader
§fn clone(&self) -> FDBTableHeader
fn clone(&self) -> FDBTableHeader
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 FDBTableHeader
impl Debug for FDBTableHeader
§impl PartialEq<FDBTableHeader> for FDBTableHeader
impl PartialEq<FDBTableHeader> for FDBTableHeader
§fn eq(&self, other: &FDBTableHeader) -> bool
fn eq(&self, other: &FDBTableHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.