pub struct ComposeBuildServices<'a> {
pub contexts: &'a dyn BuildContextInspector,
pub mutator: &'a dyn ComposeBuildMutator,
pub images: &'a dyn ImageReader,
}Expand description
Borrowed services required for one Compose build execution.
Fields§
§contexts: &'a dyn BuildContextInspectorDescriptor-confined context inspector.
mutator: &'a dyn ComposeBuildMutatorCompose build mutation driver.
images: &'a dyn ImageReaderDocker image-store reader used for verification.
Trait Implementations§
Source§impl<'a> Clone for ComposeBuildServices<'a>
impl<'a> Clone for ComposeBuildServices<'a>
Source§fn clone(&self) -> ComposeBuildServices<'a>
fn clone(&self) -> ComposeBuildServices<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ComposeBuildServices<'a>
Auto Trait Implementations§
impl<'a> Freeze for ComposeBuildServices<'a>
impl<'a> !RefUnwindSafe for ComposeBuildServices<'a>
impl<'a> Send for ComposeBuildServices<'a>
impl<'a> Sync for ComposeBuildServices<'a>
impl<'a> Unpin for ComposeBuildServices<'a>
impl<'a> UnsafeUnpin for ComposeBuildServices<'a>
impl<'a> !UnwindSafe for ComposeBuildServices<'a>
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