pub trait Host {
// Required method
fn instance_network(&mut self) -> Result<Resource<Network>>;
}
Required Methods§
sourcefn instance_network(&mut self) -> Result<Resource<Network>>
fn instance_network(&mut self) -> Result<Resource<Network>>
Get a handle to the default network.
Implementations on Foreign Types§
source§impl<_T: Host + ?Sized> Host for &mut _T
impl<_T: Host + ?Sized> Host for &mut _T
source§fn instance_network(&mut self) -> Result<Resource<Network>>
fn instance_network(&mut self) -> Result<Resource<Network>>
Get a handle to the default network.