pub trait CallableOnce<Args: Tuple = ()> {
type Output;
// Required method
fn call_fn_once(self, args: Args) -> Self::Output;
}pub trait CallableOnce<Args: Tuple = ()> {
type Output;
// Required method
fn call_fn_once(self, args: Args) -> Self::Output;
}