pub trait ApplicationCLIInterface:
Debug
+ Clone
+ Send
+ Sync {
// Required method
fn arguments() -> Self
where Self: Sized;
// Provided method
fn shared(self) -> Arc<Self> ⓘ
where Self: Sized { ... }
}Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".