pub struct AdvancedBuildStepBuilder { /* private fields */ }
Expand description
Builder for AdvancedBuildStep
.
Implementations
sourceimpl AdvancedBuildStepBuilder
impl AdvancedBuildStepBuilder
pub fn context<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn dockerfile<VALUE: Into<Option<String>>>(
&mut self,
value: VALUE
) -> &mut Self
pub fn args<VALUE: Into<Option<BuildArgs>>>(&mut self, value: VALUE) -> &mut Self
pub fn shm_size<VALUE: Into<Option<u64>>>(&mut self, value: VALUE) -> &mut Self
sourcepub fn build(&self) -> Result<AdvancedBuildStep, AdvancedBuildStepBuilderError>
pub fn build(&self) -> Result<AdvancedBuildStep, AdvancedBuildStepBuilderError>
Trait Implementations
sourceimpl Clone for AdvancedBuildStepBuilder
impl Clone for AdvancedBuildStepBuilder
sourcefn clone(&self) -> AdvancedBuildStepBuilder
fn clone(&self) -> AdvancedBuildStepBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for AdvancedBuildStepBuilder
impl Send for AdvancedBuildStepBuilder
impl Sync for AdvancedBuildStepBuilder
impl Unpin for AdvancedBuildStepBuilder
impl UnwindSafe for AdvancedBuildStepBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more