pub struct Symbol64 {
pub name_index_in_string_table: u32,
pub info: SymbolInfo,
pub other_info: SymbolOtherInfo,
pub related_section_index: u16,
pub value: u64,
pub size: u64,
}Fields§
§name_index_in_string_table: u32§info: SymbolInfo§other_info: SymbolOtherInfo§value: u64§size: u64Trait Implementations§
Source§impl BinarySerde for Symbol64where
u32: BinarySerde,
SymbolInfo: BinarySerde,
SymbolOtherInfo: BinarySerde,
u16: BinarySerde,
u64: BinarySerde,
impl BinarySerde for Symbol64where
u32: BinarySerde,
SymbolInfo: BinarySerde,
SymbolOtherInfo: BinarySerde,
u16: BinarySerde,
u64: BinarySerde,
Source§const SERIALIZED_SIZE: usize = 24usize
const SERIALIZED_SIZE: usize = 24usize
the size of this type when serialized to a packed binary format.
Source§type RecursiveArray = RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, EmptyRecursiveArray, <u32 as BinarySerde>::RecursiveArray>, <SymbolInfo as BinarySerde>::RecursiveArray>, <SymbolOtherInfo as BinarySerde>::RecursiveArray>, <u16 as BinarySerde>::RecursiveArray>, <u64 as BinarySerde>::RecursiveArray>, <u64 as BinarySerde>::RecursiveArray>
type RecursiveArray = RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, EmptyRecursiveArray, <u32 as BinarySerde>::RecursiveArray>, <SymbolInfo as BinarySerde>::RecursiveArray>, <SymbolOtherInfo as BinarySerde>::RecursiveArray>, <u16 as BinarySerde>::RecursiveArray>, <u64 as BinarySerde>::RecursiveArray>, <u64 as BinarySerde>::RecursiveArray>
the fixed size recursive array type that is returned when serializing this type to an array.
the length of this array is guaranteed to be equal to
Self::SERIALIZED_SIZE.Source§fn binary_serialize(&self, buf: &mut [u8], endianness: Endianness)
fn binary_serialize(&self, buf: &mut [u8], endianness: Endianness)
serialize this value into the given buffer using the given endianness. Read more
Source§fn binary_deserialize(
buf: &[u8],
endianness: Endianness,
) -> Result<Self, DeserializeError>
fn binary_deserialize( buf: &[u8], endianness: Endianness, ) -> Result<Self, DeserializeError>
deserializes the given buffer using the given endianness into a value of this type. Read more
Source§fn binary_serialize_to_array(
&self,
endianness: Endianness,
) -> Self::RecursiveArray
fn binary_serialize_to_array( &self, endianness: Endianness, ) -> Self::RecursiveArray
serialize this value to a fixed size array using the given endianness.
impl Eq for Symbol64
impl StructuralPartialEq for Symbol64
Auto Trait Implementations§
impl Freeze for Symbol64
impl RefUnwindSafe for Symbol64
impl Send for Symbol64
impl Sync for Symbol64
impl Unpin for Symbol64
impl UnwindSafe for Symbol64
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