Struct LinuxProcess

Source
pub struct LinuxProcess {
    pub pid: u32,
}

Fields§

§pid: u32

Trait Implementations§

Source§

impl Debug for LinuxProcess

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Process for LinuxProcess

Source§

fn base_address(&self, module_name: &str) -> Option<usize>

Finds process module base address.
Source§

fn read_bytes( &self, address: usize, buffer: &mut [u8], ) -> Result<(), MemoryReadError>

Read the specified length in bytes from the address memory.
Source§

fn read_string(&self, address: usize) -> Result<String, MemoryReadError>

Read string until null char are read.
Source§

fn read_u8(&self, address: usize) -> Result<u8, MemoryReadError>

Source§

fn read_bool(&self, address: usize) -> Result<bool, MemoryReadError>

Source§

fn read_u32(&self, address: usize) -> Result<u32, MemoryReadError>

Source§

fn read_u64(&self, address: usize) -> Result<u64, MemoryReadError>

Source§

fn read_u128(&self, address: usize) -> Result<u128, MemoryReadError>

Source§

fn read_i32(&self, address: usize) -> Result<i32, MemoryReadError>

Source§

fn read_i64(&self, address: usize) -> Result<i64, MemoryReadError>

Source§

fn read_f32(&self, address: usize) -> Result<f32, MemoryReadError>

Source§

fn read_f64(&self, address: usize) -> Result<f64, MemoryReadError>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.