pub enum InstructionOption {
Flag(String),
WithValue(String, String),
WithOptions(String, Vec<InstructionOptionOption>),
}Variants§
Trait Implementations§
Source§impl Clone for InstructionOption
impl Clone for InstructionOption
Source§fn clone(&self) -> InstructionOption
fn clone(&self) -> InstructionOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstructionOption
impl Debug for InstructionOption
Source§impl DockerfileContent for InstructionOption
impl DockerfileContent for InstructionOption
fn generate_content(&self) -> String
Source§impl PartialEq for InstructionOption
impl PartialEq for InstructionOption
impl StructuralPartialEq for InstructionOption
Auto Trait Implementations§
impl Freeze for InstructionOption
impl RefUnwindSafe for InstructionOption
impl Send for InstructionOption
impl Sync for InstructionOption
impl Unpin for InstructionOption
impl UnsafeUnpin for InstructionOption
impl UnwindSafe for InstructionOption
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