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§
sourceconst VALUE: RegisterSetValue
const VALUE: RegisterSetValue
Corresponding type of registers in the kernel.
Required Associated Types§
Object Safety§
This trait is not object safe.