pub trait Halt { // Required method fn is_halted(&self) -> bool; }
The Halt trait establishes a common interface for any haltable type;
Halt