Trait NetworkInterfaceOperations
Source pub trait NetworkInterfaceOperations {
// Required methods
fn put_network_interface<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
iface_id: &'life1 str,
interface: &'life2 NetworkInterface,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn patch_network_interface<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
iface_id: &'life1 str,
interface: &'life2 NetworkInterface,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}