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§
Sourcefn offer_device<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
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.
Sourcefn revoke_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,
Revokes the bus and its attached device from the target partition.
Sourcefn notifier(&mut self) -> &mut Receiver<VpciBusEvent>
fn notifier(&mut self) -> &mut Receiver<VpciBusEvent>
Returns a reference to an object used to receive bus events.