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 { ... } }