pub trait ComposeBuildArgs {
// Required method
fn compose_build_args() -> Result<Vec<String>>;
}Required Methods§
Sourcefn compose_build_args() -> Result<Vec<String>>
fn compose_build_args() -> Result<Vec<String>>
Takes CLI args from the host and appends them to the build command inside the docker.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.