pub struct DockerImage {
pub tag: String,
pub used_fallback: bool,
}Expand description
Information about a Docker image
Fields§
§tag: StringThe full image tag (e.g., “tsk/rust/claude/web-api”)
used_fallback: boolWhether this image used fallback (project layer was missing)
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 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DockerImage
impl RefUnwindSafe for DockerImage
impl Send for DockerImage
impl Sync for DockerImage
impl Unpin 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