pub struct RelInfoRegular64 {
pub ty: RelocationType,
pub symbol_index: u32,
}Fields§
§ty: RelocationType§symbol_index: u32Trait Implementations§
Source§impl BinarySerde for RelInfoRegular64
impl BinarySerde for RelInfoRegular64
Source§const SERIALIZED_SIZE: usize = 8usize
const SERIALIZED_SIZE: usize = 8usize
the size of this type when serialized to a packed binary format.
Source§type RecursiveArray = RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, EmptyRecursiveArray, <RelocationType as BinarySerde>::RecursiveArray>, <u32 as BinarySerde>::RecursiveArray>
type RecursiveArray = RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, EmptyRecursiveArray, <RelocationType as BinarySerde>::RecursiveArray>, <u32 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.
Source§impl Clone for RelInfoRegular64
impl Clone for RelInfoRegular64
Source§fn clone(&self) -> RelInfoRegular64
fn clone(&self) -> RelInfoRegular64
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 RelInfoRegular64
impl Debug for RelInfoRegular64
Source§impl From<RelInfoRegular32> for RelInfoRegular64
impl From<RelInfoRegular32> for RelInfoRegular64
Source§fn from(value: RelInfoRegular32) -> Self
fn from(value: RelInfoRegular32) -> Self
Converts to this type from the input type.
Source§impl Hash for RelInfoRegular64
impl Hash for RelInfoRegular64
Source§impl PartialEq for RelInfoRegular64
impl PartialEq for RelInfoRegular64
Source§impl TryFrom<RelInfoRegular64> for RelInfoRegular32
impl TryFrom<RelInfoRegular64> for RelInfoRegular32
Source§type Error = <RelocationTypeU8 as TryFrom<RelocationType>>::Error
type Error = <RelocationTypeU8 as TryFrom<RelocationType>>::Error
The type returned in the event of a conversion error.
impl Copy for RelInfoRegular64
impl Eq for RelInfoRegular64
impl StructuralPartialEq for RelInfoRegular64
Auto Trait Implementations§
impl Freeze for RelInfoRegular64
impl RefUnwindSafe for RelInfoRegular64
impl Send for RelInfoRegular64
impl Sync for RelInfoRegular64
impl Unpin for RelInfoRegular64
impl UnwindSafe for RelInfoRegular64
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