pub trait NetworkRunnable {
type Error;
type Result;
// Required method
fn run_against_rpc_server<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
global_args: Option<&'life1 Args>,
config: Option<&'life2 Args>,
) -> Pin<Box<dyn Future<Output = Result<Self::Result, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}