pub trait PrintExit {
// Required method
fn print_exit(&self) -> !;
}Required Methods§
fn print_exit(&self) -> !
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait PrintExit {
// Required method
fn print_exit(&self) -> !;
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".