pub enum DockerFileLine {
Instruction(DockerFileInsctruction),
Comment(String),
Empty,
}Variants§
Trait Implementations§
Source§impl Clone for DockerFileLine
impl Clone for DockerFileLine
Source§fn clone(&self) -> DockerFileLine
fn clone(&self) -> DockerFileLine
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 DockerFileLine
impl Debug for DockerFileLine
Source§impl DockerfileContent for DockerFileLine
impl DockerfileContent for DockerFileLine
fn generate_content(&self) -> String
Source§impl PartialEq for DockerFileLine
impl PartialEq for DockerFileLine
impl StructuralPartialEq for DockerFileLine
Auto Trait Implementations§
impl Freeze for DockerFileLine
impl RefUnwindSafe for DockerFileLine
impl Send for DockerFileLine
impl Sync for DockerFileLine
impl Unpin for DockerFileLine
impl UnsafeUnpin for DockerFileLine
impl UnwindSafe for DockerFileLine
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