pub(super) trait FromAsm: Sealed { // Required method unsafe fn from_asm(raw: *mut Opaque) -> Self; }
Convert raw from a value produced by a syscall machine instruction into a Self.
raw
Self
This should be used immediately after the syscall instruction, and the operand value shouldn’t be used for any other purpose.