pub struct ComposedDockerfile {
pub dockerfile_content: String,
pub additional_files: HashMap<String, Vec<u8>>,
pub build_args: HashSet<String>,
pub image_tag: String,
}Expand description
Result of composing Docker layers
Fields§
§dockerfile_content: StringThe complete Dockerfile content
additional_files: HashMap<String, Vec<u8>>Additional files to be placed alongside the Dockerfile
build_args: HashSet<String>Build arguments extracted from the Dockerfile
image_tag: StringThe Docker image tag for this composition
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ComposedDockerfile
impl RefUnwindSafe for ComposedDockerfile
impl Send for ComposedDockerfile
impl Sync for ComposedDockerfile
impl Unpin for ComposedDockerfile
impl UnwindSafe for ComposedDockerfile
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