Trait cosmic_hyperverse::driver::HyperDriverFactory
source · [−]pub trait HyperDriverFactory<P>: Send + Syncwhere
P: Hyperverse,{
fn kind(&self) -> Kind;
fn create<'life0, 'async_trait>(
&'life0 self,
skel: HyperStarSkel<P>,
driver_skel: DriverSkel<P>,
ctx: DriverCtx
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Driver<P>>, P::Err>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn avail(&self) -> DriverAvail { ... }
fn properties(&self) -> SetProperties { ... }
}Required Methods
Provided Methods
source
fn avail(&self) -> DriverAvail
source