pub trait Host {
    // Required method
    fn instance_network<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<Resource<Network>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn instance_network<'life0, 'async_trait>( &'life0 mut self ) -> Pin<Box<dyn Future<Output = Result<Resource<Network>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get a handle to the default network.

Implementors§