pub struct ProcHandle {
pub pid: Pid,
pub symbols: HashMap<String, HashMap<String, usize>>,
}Fields§
§pid: Pid§symbols: HashMap<String, HashMap<String, usize>>Implementations§
Source§impl ProcHandle
impl ProcHandle
pub fn new(pid: Pid) -> Result<ProcHandle>
Auto Trait Implementations§
impl Freeze for ProcHandle
impl RefUnwindSafe for ProcHandle
impl Send for ProcHandle
impl Sync for ProcHandle
impl Unpin for ProcHandle
impl UnsafeUnpin for ProcHandle
impl UnwindSafe for ProcHandle
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