pub struct ScanMatch {
pub address: usize,
pub offset: usize,
pub module_name: Option<String>,
pub module_base: Option<usize>,
}Expand description
result of a pattern scan with context
Fields§
§address: usizeabsolute address where pattern was found
offset: usizeoffset from scan start (for slice scans)
module_name: Option<String>name of module containing this address (if applicable)
module_base: Option<usize>base address of containing module (if applicable)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanMatch
impl RefUnwindSafe for ScanMatch
impl Send for ScanMatch
impl Sync for ScanMatch
impl Unpin for ScanMatch
impl UnwindSafe for ScanMatch
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