pub struct RelaMips64 {
pub offset: u64,
pub symbol_index: u32,
pub special_symbol: u8,
pub ty3: RelocationTypeU8,
pub ty2: RelocationTypeU8,
pub ty: RelocationTypeU8,
pub addend: i64,
}Fields§
§offset: u64§symbol_index: u32§special_symbol: u8§ty3: RelocationTypeU8§ty2: RelocationTypeU8§ty: RelocationTypeU8§addend: i64Implementations§
Source§impl RelaMips64
impl RelaMips64
pub fn to_rel_and_addend(self) -> (RelMips64, i64)
pub fn from_rel_and_addend(rel: RelMips64, addend: i64) -> Self
Trait Implementations§
Source§impl BinarySerde for RelaMips64where
u64: BinarySerde,
u32: BinarySerde,
u8: BinarySerde,
RelocationTypeU8: BinarySerde,
i64: BinarySerde,
impl BinarySerde for RelaMips64where
u64: BinarySerde,
u32: BinarySerde,
u8: BinarySerde,
RelocationTypeU8: BinarySerde,
i64: 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, RecursiveArrayConcatenation<u8, EmptyRecursiveArray, <u64 as BinarySerde>::RecursiveArray>, <u32 as BinarySerde>::RecursiveArray>, <u8 as BinarySerde>::RecursiveArray>, <RelocationTypeU8 as BinarySerde>::RecursiveArray>, <RelocationTypeU8 as BinarySerde>::RecursiveArray>, <RelocationTypeU8 as BinarySerde>::RecursiveArray>, <i64 as BinarySerde>::RecursiveArray>
type RecursiveArray = RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, RecursiveArrayConcatenation<u8, EmptyRecursiveArray, <u64 as BinarySerde>::RecursiveArray>, <u32 as BinarySerde>::RecursiveArray>, <u8 as BinarySerde>::RecursiveArray>, <RelocationTypeU8 as BinarySerde>::RecursiveArray>, <RelocationTypeU8 as BinarySerde>::RecursiveArray>, <RelocationTypeU8 as BinarySerde>::RecursiveArray>, <i64 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 RelaMips64
impl Clone for RelaMips64
Source§fn clone(&self) -> RelaMips64
fn clone(&self) -> RelaMips64
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 RelaMips64
impl Debug for RelaMips64
Source§impl Hash for RelaMips64
impl Hash for RelaMips64
Source§impl PartialEq for RelaMips64
impl PartialEq for RelaMips64
impl Eq for RelaMips64
impl StructuralPartialEq for RelaMips64
Auto Trait Implementations§
impl Freeze for RelaMips64
impl RefUnwindSafe for RelaMips64
impl Send for RelaMips64
impl Sync for RelaMips64
impl Unpin for RelaMips64
impl UnwindSafe for RelaMips64
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