pub trait Termination {
// Required method
fn report(self);
}
Expand description
A trait that can be implemented for arbitrary return types in the main
function.
pub trait Termination {
// Required method
fn report(self);
}
A trait that can be implemented for arbitrary return types in the main
function.