Trait cosmic_hyperspace::driver::Item
source · pub trait Item<P>where
P: Cosmos,{
type Skel;
type Ctx;
type State;
fn restore(skel: Self::Skel, ctx: Self::Ctx, state: Self::State) -> Self;
fn bind<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<ArtRef<BindConfig>, P::Err>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: Sync + 'async_trait,
{ ... }
}