pub struct RelInfoRegular32 {
pub ty: RelocationTypeU8,
pub symbol_index: u32,
}Fields§
§ty: RelocationTypeU8§symbol_index: u32Trait Implementations§
Source§impl BinarySerde for RelInfoRegular32
impl BinarySerde for RelInfoRegular32
Source§const SERIALIZED_SIZE: usize = 4usize
const SERIALIZED_SIZE: usize = 4usize
the size of this type when serialized to a packed binary format.
Source§type RecursiveArray = RecursiveArrayArrayWrapper<4, u8>
type RecursiveArray = RecursiveArrayArrayWrapper<4, u8>
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 RelInfoRegular32
impl Clone for RelInfoRegular32
Source§fn clone(&self) -> RelInfoRegular32
fn clone(&self) -> RelInfoRegular32
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 RelInfoRegular32
impl Debug for RelInfoRegular32
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 RelInfoRegular32
impl Hash for RelInfoRegular32
Source§impl PartialEq for RelInfoRegular32
impl PartialEq for RelInfoRegular32
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 RelInfoRegular32
impl Eq for RelInfoRegular32
impl StructuralPartialEq for RelInfoRegular32
Auto Trait Implementations§
impl Freeze for RelInfoRegular32
impl RefUnwindSafe for RelInfoRegular32
impl Send for RelInfoRegular32
impl Sync for RelInfoRegular32
impl Unpin for RelInfoRegular32
impl UnwindSafe for RelInfoRegular32
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