pub struct HookedFop {
pub function_name: String,
pub target_address: u64,
pub is_in_kernel_text: bool,
}Expand description
A single function pointer from a file_operations struct.
Fields§
§function_name: StringName of the function pointer field, e.g. “read”, “write”.
target_address: u64Virtual address the function pointer targets.
is_in_kernel_text: boolWhether the target falls within the kernel text section.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HookedFop
impl RefUnwindSafe for HookedFop
impl Send for HookedFop
impl Sync for HookedFop
impl Unpin for HookedFop
impl UnsafeUnpin for HookedFop
impl UnwindSafe for HookedFop
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