pub struct RegistryLocator {
pub registry: Option<String>,
pub namespace: Option<String>,
pub image: String,
pub tag: Option<String>,
}Expand description
An OCI registry locator.
Fields§
§registry: Option<String>Registry host: ghcr.io.
namespace: Option<String>Namespace or organization: org/namespace.
image: StringThe image name (plugin identifier): plugin
tag: Option<String>Explicit release tag to use. Defaults to latest.
Trait Implementations§
Source§impl Clone for RegistryLocator
impl Clone for RegistryLocator
Source§fn clone(&self) -> RegistryLocator
fn clone(&self) -> RegistryLocator
Returns a duplicate of the value. Read more
1.0.0 · 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 RegistryLocator
impl Debug for RegistryLocator
Source§impl Default for RegistryLocator
impl Default for RegistryLocator
Source§fn default() -> RegistryLocator
fn default() -> RegistryLocator
Returns the “default value” for a type. Read more
Source§impl PartialEq for RegistryLocator
impl PartialEq for RegistryLocator
impl Eq for RegistryLocator
impl StructuralPartialEq for RegistryLocator
Auto Trait Implementations§
impl Freeze for RegistryLocator
impl RefUnwindSafe for RegistryLocator
impl Send for RegistryLocator
impl Sync for RegistryLocator
impl Unpin for RegistryLocator
impl UnwindSafe for RegistryLocator
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.