vpci::bus_control

Trait VpciBusControl

Source
pub trait VpciBusControl {
    // Required methods
    fn offer_device<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn revoke_device<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn notifier(&mut self) -> &mut Receiver<VpciBusEvent>;
}
Expand description

A trait used to control a Virtual PCI bus.

Required Methods§

Source

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

Offers the bus and its attached device to the target partition. The bus and device must have been pre-configured (through some other mechanism, not provided by this trait) before they are offered.

Source

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

Revokes the bus and its attached device from the target partition.

Source

fn notifier(&mut self) -> &mut Receiver<VpciBusEvent>

Returns a reference to an object used to receive bus events.

Implementors§