Skip to main content

ImageReference

Struct ImageReference 

Source
pub struct ImageReference {
    pub transport: Transport,
    pub name: String,
}
Expand description

Combination of a transport and image name.

For example, docker://quay.io/exampleos/blah:latest would be parsed as:

  • transport: Registry
  • name: quay.io/exampleos/blah:latest

§Name formats by transport

The name field format varies by transport:

TransportName formatExample
Registry[domain/]name[:tag][@digest]quay.io/example/image:latest
OciDirpath[:reference]/path/to/oci-layout:mytag
OciArchivepath[:reference]/path/to/image.tar:v1.0
DockerArchivepath[:docker-reference]/path/to/image.tar:myimage:tag
ContainerStorage[[storage-spec]]{image-id|docker-ref}localhost/myimage:latest
Dirpath/path/to/directory
DockerDaemondocker-reference or algo:digestmyimage:latest

Fields§

§transport: Transport

The storage and transport for the image

§name: String

The image name - format depends on transport (see struct docs)

Implementations§

Source§

impl ImageReference

Source

pub fn new(transport: Transport, name: impl Into<String>) -> Self

Create a new image reference from a transport and name.

§Examples
use containers_image_proxy::{ImageReference, Transport};

let imgref = ImageReference::new(Transport::Registry, "quay.io/example/image:tag");
assert_eq!(imgref.to_string(), "docker://quay.io/example/image:tag");
Source

pub fn new_registry(reference: Reference) -> Self

Create a new registry image reference from a parsed OCI Reference.

§Examples
use containers_image_proxy::ImageReference;
use oci_spec::distribution::Reference;

let oci_ref: Reference = "quay.io/example/image:latest".parse().unwrap();
let imgref = ImageReference::new_registry(oci_ref);
assert_eq!(imgref.to_string(), "docker://quay.io/example/image:latest");
Source

pub fn try_new_registry(name: &str) -> Result<Self, ParseError>

Try to create a new registry image reference by parsing the name.

Returns an error if the name is not a valid OCI distribution reference.

§Examples
use containers_image_proxy::ImageReference;

let imgref = ImageReference::try_new_registry("quay.io/example/image:latest").unwrap();
assert_eq!(imgref.to_string(), "docker://quay.io/example/image:latest");

// Invalid references return an error
assert!(ImageReference::try_new_registry("not a valid reference!").is_err());
Source

pub fn as_registry(&self) -> Option<Result<Reference, ParseError>>

For Registry transport, parse the name as an OCI distribution Reference.

Returns None for non-Registry transports. For Registry transport, returns Some(Result) with the parsed reference or a parse error.

This is useful when you need structured access to the registry, repository, tag, and digest components of a registry image reference.

§Examples
use containers_image_proxy::{ImageReference, Transport};

let imgref: ImageReference = "docker://quay.io/example/image:latest".try_into().unwrap();
let oci_ref = imgref.as_registry().unwrap().unwrap();
assert_eq!(oci_ref.registry(), "quay.io");
assert_eq!(oci_ref.repository(), "example/image");
assert_eq!(oci_ref.tag(), Some("latest"));

// Non-registry transports return None
let imgref: ImageReference = "oci:/path/to/image".try_into().unwrap();
assert!(imgref.as_registry().is_none());
Source

pub fn as_containers_storage(&self) -> Option<ContainersStorageRef<'_>>

For ContainerStorage transport, parse into structured components.

Returns None for non-ContainerStorage transports.

§Examples
use containers_image_proxy::{ImageReference, Transport};

// Simple image reference
let imgref: ImageReference = "containers-storage:localhost/myimage:tag".try_into().unwrap();
let csref = imgref.as_containers_storage().unwrap();
assert_eq!(csref.store_spec(), None);
assert_eq!(csref.image(), "localhost/myimage:tag");

// With store specifier
let imgref: ImageReference = "containers-storage:[overlay@/var/lib/containers]busybox".try_into().unwrap();
let csref = imgref.as_containers_storage().unwrap();
assert_eq!(csref.store_spec(), Some("overlay@/var/lib/containers"));
assert_eq!(csref.image(), "busybox");

// Normalizing sha256: prefix (workaround for skopeo#2750)
let imgref: ImageReference = "containers-storage:sha256:abc123".try_into().unwrap();
let csref = imgref.as_containers_storage().unwrap();
assert_eq!(csref.image_for_skopeo(), "abc123");

Trait Implementations§

Source§

impl Clone for ImageReference

Source§

fn clone(&self) -> ImageReference

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ImageReference

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ImageReference

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for ImageReference

Source§

type Err = ImageReferenceError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for ImageReference

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for ImageReference

Source§

fn eq(&self, other: &ImageReference) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&str> for ImageReference

Source§

fn try_from(value: &str) -> Result<Self, ImageReferenceError>

Parse an image reference string into transport and name components.

§Examples
use containers_image_proxy::transport::{ImageReference, Transport};

let imgref: ImageReference = "docker://quay.io/example/image:tag".try_into().unwrap();
assert_eq!(imgref.transport, Transport::Registry);
assert_eq!(imgref.name, "quay.io/example/image:tag");

let imgref: ImageReference = "containers-storage:localhost/myimage".try_into().unwrap();
assert_eq!(imgref.transport, Transport::ContainerStorage);
assert_eq!(imgref.name, "localhost/myimage");
Source§

type Error = ImageReferenceError

The type returned in the event of a conversion error.
Source§

impl Eq for ImageReference

Source§

impl StructuralPartialEq for ImageReference

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more