pub trait NetworkProvider: Sync + Send {
// Required method
fn send<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
method: &'life1 HttpMethod,
args: &'life2 RequestArgs,
) -> Pin<Box<dyn Future<Output = Response> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}