pub trait ParentBus: Send + Sync {
// Required methods
fn add_child<'life0, 'async_trait>(
&'life0 self,
request: OfferInput,
) -> Pin<Box<dyn Future<Output = Result<OfferResources>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn clone_bus(&self) -> Box<dyn ParentBus>;
// Provided method
fn use_event(&self) -> bool { ... }
}
Expand description
Trait implemented by VMBus servers.
Required Methods§
Sourcefn add_child<'life0, 'async_trait>(
&'life0 self,
request: OfferInput,
) -> Pin<Box<dyn Future<Output = Result<OfferResources>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn add_child<'life0, 'async_trait>(
&'life0 self,
request: OfferInput,
) -> Pin<Box<dyn Future<Output = Result<OfferResources>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Offers a new channel.
Provided Methods§
Sourcefn use_event(&self) -> bool
fn use_event(&self) -> bool
Returns whether OpenResult::guest_to_host_interrupt
needs to be
backed by an OS event.
TODO: Remove this and just return the appropriate notify type directly once subchannel creation and enable are separated.