pub struct CommandImageBuildMutator<E> { /* private fields */ }Expand description
Process-backed Docker build driver.
Implementations§
Trait Implementations§
Source§impl<E> ImageBuildMutator for CommandImageBuildMutator<E>where
E: CommandExecutor,
impl<E> ImageBuildMutator for CommandImageBuildMutator<E>where
E: CommandExecutor,
Source§fn build_image<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
host: &'life1 HostRecord,
request: &'life2 ImageBuildRequest,
progress: &'life3 dyn MutationProgressReporter,
cancellation: &'life4 CancellationToken,
) -> Pin<Box<dyn Future<Output = MutationResult<ImageBuildReceipt>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
fn build_image<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
host: &'life1 HostRecord,
request: &'life2 ImageBuildRequest,
progress: &'life3 dyn MutationProgressReporter,
cancellation: &'life4 CancellationToken,
) -> Pin<Box<dyn Future<Output = MutationResult<ImageBuildReceipt>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Executes one image build while preserving send uncertainty.
Auto Trait Implementations§
impl<E> Freeze for CommandImageBuildMutator<E>
impl<E> RefUnwindSafe for CommandImageBuildMutator<E>where
E: RefUnwindSafe,
impl<E> Send for CommandImageBuildMutator<E>
impl<E> Sync for CommandImageBuildMutator<E>
impl<E> Unpin for CommandImageBuildMutator<E>
impl<E> UnsafeUnpin for CommandImageBuildMutator<E>
impl<E> UnwindSafe for CommandImageBuildMutator<E>where
E: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more