Struct assembly_fdb_core::file::FDBTableDataHeader
source · [−]#[repr(C)]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
sourceimpl FDBTableDataHeader
impl FDBTableDataHeader
sourcepub 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
sourceimpl Clone for FDBTableDataHeader
impl Clone for FDBTableDataHeader
sourcefn clone(&self) -> FDBTableDataHeader
fn clone(&self) -> FDBTableDataHeader
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 FDBTableDataHeader
impl Debug for FDBTableDataHeader
sourceimpl PartialEq<FDBTableDataHeader> for FDBTableDataHeader
impl PartialEq<FDBTableDataHeader> for FDBTableDataHeader
sourcefn eq(&self, other: &FDBTableDataHeader) -> bool
fn eq(&self, other: &FDBTableDataHeader) -> bool
impl Copy for FDBTableDataHeader
impl Eq for FDBTableDataHeader
impl Pod for FDBTableDataHeader
impl StructuralEq for FDBTableDataHeader
impl StructuralPartialEq for FDBTableDataHeader
Auto Trait Implementations
impl RefUnwindSafe for FDBTableDataHeader
impl Send for FDBTableDataHeader
impl Sync for FDBTableDataHeader
impl Unpin for FDBTableDataHeader
impl UnwindSafe for FDBTableDataHeader
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