Struct assembly_fdb::file::FDBTableDataHeader
pub struct FDBTableDataHeader {
pub buckets: ArrayHeader,
}
Expand description
The header of a table data block
It contains a reference to the array of buckets that hold the row data.
Fields§
§buckets: ArrayHeader
The buckets.
Implementations§
§impl FDBTableDataHeader
impl FDBTableDataHeader
pub const fn bucket_header_list_byte_count(&self) -> usize
pub const fn bucket_header_list_byte_count(&self) -> usize
Returns the expected byte length of the FDBBucketHeader
array.
Trait Implementations§
§impl Clone for FDBTableDataHeader
impl Clone for FDBTableDataHeader
§fn clone(&self) -> FDBTableDataHeader
fn clone(&self) -> FDBTableDataHeader
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 FDBTableDataHeader
impl Debug for FDBTableDataHeader
§impl PartialEq<FDBTableDataHeader> for FDBTableDataHeader
impl PartialEq<FDBTableDataHeader> for FDBTableDataHeader
§fn eq(&self, other: &FDBTableDataHeader) -> bool
fn eq(&self, other: &FDBTableDataHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.