implement r/w of process memory

This commit is contained in:
2024-12-30 18:06:33 +00:00
parent ff7674615d
commit d6fb43adc1
6 changed files with 103 additions and 10 deletions
+2
View File
@@ -10,4 +10,6 @@ pub enum Error {
SnapshotError(String),
#[error("failed to convert integer")]
IntegerConversionError(#[from] std::num::TryFromIntError),
#[error("failed to access process memory")]
MemoryError(String),
}