pub enum DockerFileCommand {
Show 17 variants
FROM,
ARG,
LABEL,
MAINTAINER,
RUN,
COPY,
ADD,
WORKDIR,
ENV,
EXPOSE,
USER,
VOLUME,
SHELL,
HEALTHCHECK,
CMD,
ENTRYPOINT,
Unknown(String),
}Variants§
FROM
ARG
LABEL
MAINTAINER
RUN
COPY
ADD
WORKDIR
ENV
EXPOSE
USER
VOLUME
SHELL
HEALTHCHECK
CMD
ENTRYPOINT
Unknown(String)
Trait Implementations§
Source§impl Clone for DockerFileCommand
impl Clone for DockerFileCommand
Source§fn clone(&self) -> DockerFileCommand
fn clone(&self) -> DockerFileCommand
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 DockerFileCommand
impl Debug for DockerFileCommand
Source§impl<'de> Deserialize<'de> for DockerFileCommand
impl<'de> Deserialize<'de> for DockerFileCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for DockerFileCommand
impl FromStr for DockerFileCommand
Source§impl PartialEq for DockerFileCommand
impl PartialEq for DockerFileCommand
Source§impl ToString for DockerFileCommand
impl ToString for DockerFileCommand
impl StructuralPartialEq for DockerFileCommand
Auto Trait Implementations§
impl Freeze for DockerFileCommand
impl RefUnwindSafe for DockerFileCommand
impl Send for DockerFileCommand
impl Sync for DockerFileCommand
impl Unpin for DockerFileCommand
impl UnsafeUnpin for DockerFileCommand
impl UnwindSafe for DockerFileCommand
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