(&self)
| 30 | |
| 31 | impl Execution { |
| 32 | pub fn is_self_injection(&self) -> bool { |
| 33 | matches!( |
| 34 | self, |
| 35 | Execution::NtQueueUserAPC |
| 36 | | Execution::WinFiber |
| 37 | | Execution::NtFiber |
| 38 | | Execution::SysFiber |
| 39 | ) |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | impl fmt::Display for Execution { |