pub struct RelocationResult {
pub bytes: Vec<u8>,
pub size_changed: bool,
}Expand description
relocation result
Fields§
§bytes: Vec<u8>the relocated instruction bytes
size_changed: boolwhether the instruction grew in size (e.g., short jmp -> long jmp)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RelocationResult
impl RefUnwindSafe for RelocationResult
impl Send for RelocationResult
impl Sync for RelocationResult
impl Unpin for RelocationResult
impl UnwindSafe for RelocationResult
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