pub enum DockerImage {
DockerUri(String),
Dockerfile(Utf8PathBuf),
Missing,
}Expand description
Recognized shapes of runs.image for a Docker action.
Variants§
DockerUri(String)
docker://image[:tag] reference.
Dockerfile(Utf8PathBuf)
A Dockerfile path (literal Dockerfile or a relative .Dockerfile).
Missing
runs.image was missing or empty.
Trait Implementations§
Source§impl Clone for DockerImage
impl Clone for DockerImage
Source§fn clone(&self) -> DockerImage
fn clone(&self) -> DockerImage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DockerImage
impl Debug for DockerImage
Source§impl PartialEq for DockerImage
impl PartialEq for DockerImage
Source§fn eq(&self, other: &DockerImage) -> bool
fn eq(&self, other: &DockerImage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DockerImage
impl StructuralPartialEq for DockerImage
Auto Trait Implementations§
impl Freeze for DockerImage
impl RefUnwindSafe for DockerImage
impl Send for DockerImage
impl Sync for DockerImage
impl Unpin for DockerImage
impl UnsafeUnpin for DockerImage
impl UnwindSafe for DockerImage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.