pub trait Host: Send { // Required method fn exit(&mut self, status: Result<(), ()>) -> Result<()>; }
Exit the current instance and any linked instances.