pub struct SharedLibraryInfo {
pub pid: u32,
pub process_name: String,
pub lib_path: String,
pub base_addr: u64,
pub size: u64,
pub is_suspicious: bool,
}Expand description
Information about a shared library mapped into a process’s address space.
Fields§
§pid: u32Process ID.
process_name: StringProcess command name.
lib_path: StringFile path of the shared library (from vm_file → f_path → dentry → d_name).
base_addr: u64Base virtual address (lowest vm_start among the library’s VMAs).
size: u64Total mapped size (sum of all VMA regions for this library).
is_suspicious: boolWhether the library path is classified as suspicious.
Trait Implementations§
Source§fn clone(&self) -> SharedLibraryInfo
fn clone(&self) -> SharedLibraryInfo
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§
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