[][src]Struct bandsocks::DefaultRegistry

pub struct DefaultRegistry {
    pub network_name: Registry,
    pub also_known_as: Vec<Registry>,
    pub library_prefix: Option<Repository>,
}

Additional settings for compatibility with a default registry server

If you don't need the additional options, you can convert a plain Registry into a DefaultRegistry

Fields

network_name: Registry

Connect to the registry under this name

also_known_as: Vec<Registry>

This registry is also known under additional names

library_prefix: Option<Repository>

Use this prefix when accessing an image repository with only a single path component

Implementations

impl DefaultRegistry[src]

pub fn new() -> Self[src]

Return the built-in defaults

pub fn is_default(&self, registry: &Option<Registry>) -> bool[src]

Check whether a particular registry is considered default under these settings

Returns true if the given registry is None or if it matches either the network_name or any of the also_known_as settings here.

pub fn resolve_image_name(&self, image: &ImageName) -> (Registry, Repository)[src]

Use these settings to determine the actual network server and path for an image

Trait Implementations

impl Clone for DefaultRegistry[src]

impl Debug for DefaultRegistry[src]

impl From<Registry> for DefaultRegistry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,