Struct assembly_fdb_core::file::FDBTableHeader
source · [−]#[repr(C)]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
sourceimpl Clone for FDBTableHeader
impl Clone for FDBTableHeader
sourcefn clone(&self) -> FDBTableHeader
fn clone(&self) -> FDBTableHeader
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FDBTableHeader
impl Debug for FDBTableHeader
sourceimpl PartialEq<FDBTableHeader> for FDBTableHeader
impl PartialEq<FDBTableHeader> for FDBTableHeader
sourcefn eq(&self, other: &FDBTableHeader) -> bool
fn eq(&self, other: &FDBTableHeader) -> bool
impl Copy for FDBTableHeader
impl Eq for FDBTableHeader
impl Pod for FDBTableHeader
impl StructuralEq for FDBTableHeader
impl StructuralPartialEq for FDBTableHeader
Auto Trait Implementations
impl RefUnwindSafe for FDBTableHeader
impl Send for FDBTableHeader
impl Sync for FDBTableHeader
impl Unpin for FDBTableHeader
impl UnwindSafe for FDBTableHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
. Read more