pub trait Run: Sized {
// Required method
fn run(self) -> Result;
}
Expand description
A type that can be run as an application.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Run: Sized {
// Required method
fn run(self) -> Result;
}
A type that can be run as an application.