Struct assembly_fdb::file::ArrayHeader
pub struct ArrayHeader {
pub count: u32,
pub base_offset: u32,
}
Expand description
The basic format of an array reference
Fields§
§count: u32
The number of entries in the array
base_offset: u32
The offset of the start of the array
Trait Implementations§
§impl Clone for ArrayHeader
impl Clone for ArrayHeader
§fn clone(&self) -> ArrayHeader
fn clone(&self) -> ArrayHeader
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 ArrayHeader
impl Debug for ArrayHeader
§impl From<(u32, u32)> for ArrayHeader
impl From<(u32, u32)> for ArrayHeader
§fn from(_: (u32, u32)) -> ArrayHeader
fn from(_: (u32, u32)) -> ArrayHeader
Converts to this type from the input type.
§impl PartialEq<ArrayHeader> for ArrayHeader
impl PartialEq<ArrayHeader> for ArrayHeader
§fn eq(&self, other: &ArrayHeader) -> bool
fn eq(&self, other: &ArrayHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.