pub struct VolatilityElfEntry {
pub pid: u32,
pub process_name: String,
pub start: u64,
pub end: u64,
pub path: String,
}Expand description
One row of Volatility’s linux.elfs output — a memory-mapped ELF image in a
process, used as an alternative prevalence source to /proc/<pid>/maps.
Fields§
§pid: u32Owning process id.
process_name: StringOwning process name.
start: u64Mapping start virtual address.
end: u64Mapping end virtual address.
path: StringFilesystem path of the mapped ELF image.
Trait Implementations§
Source§impl Clone for VolatilityElfEntry
impl Clone for VolatilityElfEntry
Source§fn clone(&self) -> VolatilityElfEntry
fn clone(&self) -> VolatilityElfEntry
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 VolatilityElfEntry
impl RefUnwindSafe for VolatilityElfEntry
impl Send for VolatilityElfEntry
impl Sync for VolatilityElfEntry
impl Unpin for VolatilityElfEntry
impl UnsafeUnpin for VolatilityElfEntry
impl UnwindSafe for VolatilityElfEntry
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