pub trait BuildableImage {
type Built: Image;
// Required methods
fn build_context(&self) -> CopyToContainerCollection;
fn descriptor(&self) -> String;
fn into_image(self) -> Self::Built;
}
pub trait BuildableImage {
type Built: Image;
// Required methods
fn build_context(&self) -> CopyToContainerCollection;
fn descriptor(&self) -> String;
fn into_image(self) -> Self::Built;
}