#[non_exhaustive]#[repr(u32)]pub enum Request {
Show 31 variants
PTRACE_TRACEME = 0,
PTRACE_PEEKTEXT = 1,
PTRACE_PEEKDATA = 2,
PTRACE_PEEKUSER = 3,
PTRACE_POKETEXT = 4,
PTRACE_POKEDATA = 5,
PTRACE_POKEUSER = 6,
PTRACE_CONT = 7,
PTRACE_KILL = 8,
PTRACE_SINGLESTEP = 9,
PTRACE_GETREGS = 12,
PTRACE_SETREGS = 13,
PTRACE_GETFPREGS = 14,
PTRACE_SETFPREGS = 15,
PTRACE_ATTACH = 16,
PTRACE_DETACH = 17,
PTRACE_GETFPXREGS = 18,
PTRACE_SETFPXREGS = 19,
PTRACE_SYSCALL = 24,
PTRACE_SETOPTIONS = 16_896,
PTRACE_GETEVENTMSG = 16_897,
PTRACE_GETSIGINFO = 16_898,
PTRACE_SETSIGINFO = 16_899,
PTRACE_GETREGSET = 16_900,
PTRACE_SETREGSET = 16_901,
PTRACE_SEIZE = 16_902,
PTRACE_INTERRUPT = 16_903,
PTRACE_LISTEN = 16_904,
PTRACE_PEEKSIGINFO = 16_905,
PTRACE_SYSEMU = 31,
PTRACE_SYSEMU_SINGLESTEP = 32,
}
Expand description
Ptrace Request enum defining the action to be taken.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PTRACE_TRACEME = 0
PTRACE_PEEKTEXT = 1
PTRACE_PEEKDATA = 2
PTRACE_PEEKUSER = 3
PTRACE_POKETEXT = 4
PTRACE_POKEDATA = 5
PTRACE_POKEUSER = 6
PTRACE_CONT = 7
PTRACE_KILL = 8
PTRACE_SINGLESTEP = 9
PTRACE_GETREGS = 12
PTRACE_SETREGS = 13
PTRACE_GETFPREGS = 14
PTRACE_SETFPREGS = 15
PTRACE_ATTACH = 16
PTRACE_DETACH = 17
PTRACE_GETFPXREGS = 18
PTRACE_SETFPXREGS = 19
PTRACE_SYSCALL = 24
PTRACE_SETOPTIONS = 16_896
PTRACE_GETEVENTMSG = 16_897
PTRACE_GETSIGINFO = 16_898
PTRACE_SETSIGINFO = 16_899
PTRACE_GETREGSET = 16_900
PTRACE_SETREGSET = 16_901
PTRACE_SEIZE = 16_902
PTRACE_INTERRUPT = 16_903
PTRACE_LISTEN = 16_904
PTRACE_PEEKSIGINFO = 16_905
PTRACE_SYSEMU = 31
PTRACE_SYSEMU_SINGLESTEP = 32
Trait Implementations§
source§impl Ord for Request
impl Ord for Request
source§impl PartialOrd for Request
impl PartialOrd for Request
impl Copy for Request
impl Eq for Request
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)