pub struct HelixBinary {
pub magic: [u8; 4],
pub version: u32,
pub flags: BinaryFlags,
pub metadata: BinaryMetadata,
pub symbol_table: SymbolTable,
pub data_sections: Vec<DataSection>,
pub checksum: u64,
}
Fields§
§magic: [u8; 4]
§version: u32
§flags: BinaryFlags
§metadata: BinaryMetadata
§symbol_table: SymbolTable
§data_sections: Vec<DataSection>
§checksum: u64
Implementations§
Trait Implementations§
Source§impl Clone for HelixBinary
impl Clone for HelixBinary
Source§fn clone(&self) -> HelixBinary
fn clone(&self) -> HelixBinary
Returns a duplicate 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 moreSource§impl Debug for HelixBinary
impl Debug for HelixBinary
Source§impl Default for HelixBinary
impl Default for HelixBinary
Source§impl<'de> Deserialize<'de> for HelixBinary
impl<'de> Deserialize<'de> for HelixBinary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HelixBinary
impl RefUnwindSafe for HelixBinary
impl Send for HelixBinary
impl Sync for HelixBinary
impl Unpin for HelixBinary
impl UnwindSafe for HelixBinary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more