pub struct ResidueHit {
pub file: PathBuf,
pub sample: String,
}Expand description
One absolute-prefix byte sequence found in a binary after all Mach-O load
commands were rewritten — i.e. an embedded data string (compiled-in
libexec path, baked --prefix, …) that load-command rewriting cannot
reach.
Fields§
§file: PathBufThe binary containing the residual absolute prefix.
sample: StringA printable ±40-byte sample around the first occurrence (control
bytes rendered as .).
Trait Implementations§
Source§impl Clone for ResidueHit
impl Clone for ResidueHit
Source§fn clone(&self) -> ResidueHit
fn clone(&self) -> ResidueHit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResidueHit
impl RefUnwindSafe for ResidueHit
impl Send for ResidueHit
impl Sync for ResidueHit
impl Unpin for ResidueHit
impl UnsafeUnpin for ResidueHit
impl UnwindSafe for ResidueHit
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