pub trait BuildService: Send + Sync {
// Required method
fn do_build<'life0, 'async_trait>(
&'life0 self,
request: BuildRequest,
) -> Pin<Box<dyn Future<Output = Result<BuildResult>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Required Methods§
Sourcefn do_build<'life0, 'async_trait>(
&'life0 self,
request: BuildRequest,
) -> Pin<Box<dyn Future<Output = Result<BuildResult>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn do_build<'life0, 'async_trait>(
&'life0 self,
request: BuildRequest,
) -> Pin<Box<dyn Future<Output = Result<BuildResult>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
TODO: document
Implementors§
impl BuildService for GRPCBuildService
impl BuildService for DummyBuildService
impl<BS, DS> BuildService for BubblewrapBuildService<BS, DS>
Available on Linux only.
impl<BS, DS> BuildService for OCIBuildService<BS, DS>
Available on Linux only.