pub struct DockerFileInsctruction {
pub command: DockerFileCommand,
pub content: String,
pub options: Vec<InstructionOption>,
}Fields§
§command: DockerFileCommand§content: String§options: Vec<InstructionOption>Trait Implementations§
Source§impl Clone for DockerFileInsctruction
impl Clone for DockerFileInsctruction
Source§fn clone(&self) -> DockerFileInsctruction
fn clone(&self) -> DockerFileInsctruction
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 DockerFileInsctruction
impl Debug for DockerFileInsctruction
Source§impl DockerfileContent for DockerFileInsctruction
impl DockerfileContent for DockerFileInsctruction
fn generate_content(&self) -> String
Source§impl PartialEq for DockerFileInsctruction
impl PartialEq for DockerFileInsctruction
impl StructuralPartialEq for DockerFileInsctruction
Auto Trait Implementations§
impl Freeze for DockerFileInsctruction
impl RefUnwindSafe for DockerFileInsctruction
impl Send for DockerFileInsctruction
impl Sync for DockerFileInsctruction
impl Unpin for DockerFileInsctruction
impl UnsafeUnpin for DockerFileInsctruction
impl UnwindSafe for DockerFileInsctruction
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