pub struct DockerUses {
pub registry: Option<String>,
pub image: String,
pub tag: Option<String>,
pub hash: Option<String>,
}
Expand description
A uses: docker://some-image
clause.
Fields§
§registry: Option<String>
The registry this image is on, if present.
image: String
The name of the Docker image.
tag: Option<String>
An optional tag for the image.
hash: Option<String>
An optional integrity hash for the image.
Trait Implementations§
Source§impl Debug for DockerUses
impl Debug for DockerUses
Source§impl FromStr for DockerUses
impl FromStr for DockerUses
Source§impl PartialEq for DockerUses
impl PartialEq for DockerUses
impl StructuralPartialEq for DockerUses
Auto Trait Implementations§
impl Freeze for DockerUses
impl RefUnwindSafe for DockerUses
impl Send for DockerUses
impl Sync for DockerUses
impl Unpin for DockerUses
impl UnwindSafe for DockerUses
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