pub struct SyscallInfo {
pub number: u64,
pub handler: u64,
pub hooked: bool,
pub expected_name: Option<String>,
}Expand description
Information about a syscall table entry.
Fields§
§number: u64Syscall number.
handler: u64Address of the handler function.
hooked: boolWhether this entry appears hooked (doesn’t match known symbol).
expected_name: Option<String>Name of the expected handler, if known.
Trait Implementations§
Source§impl Clone for SyscallInfo
impl Clone for SyscallInfo
Source§fn clone(&self) -> SyscallInfo
fn clone(&self) -> SyscallInfo
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§
impl Freeze for SyscallInfo
impl RefUnwindSafe for SyscallInfo
impl Send for SyscallInfo
impl Sync for SyscallInfo
impl Unpin for SyscallInfo
impl UnsafeUnpin for SyscallInfo
impl UnwindSafe for SyscallInfo
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