Trait nix::sys::ptrace::RegisterSet

source ·
pub unsafe trait RegisterSet {
    type Regs;

    const VALUE: RegisterSetValue;
}
Expand description

Represents register set areas, such as general-purpose registers or floating-point registers.

§Safety

This trait is marked unsafe, since implementation of the trait must match ptrace’s request VALUE and return data type Regs.

Required Associated Constants§

source

const VALUE: RegisterSetValue

Corresponding type of registers in the kernel.

Required Associated Types§

source

type Regs

Struct representing the register space.

Object Safety§

This trait is not object safe.

Implementors§