pub struct RegistryArtifact {
pub template_id: String,
pub revision: Option<String>,
}Expand description
Reference to pre-built artifacts in an S3-compatible registry. When present on a DesiredPool, the agent pulls artifacts from the registry instead of running a local Nix build.
Fields§
§template_id: StringTemplate ID in the registry (matches mvmctl template name).
revision: Option<String>Specific revision hash to pull. When None, the registry’s “current” pointer is resolved at pull time.
Trait Implementations§
Source§impl Clone for RegistryArtifact
impl Clone for RegistryArtifact
Source§fn clone(&self) -> RegistryArtifact
fn clone(&self) -> RegistryArtifact
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 RegistryArtifact
impl Debug for RegistryArtifact
Source§impl<'de> Deserialize<'de> for RegistryArtifact
impl<'de> Deserialize<'de> for RegistryArtifact
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RegistryArtifact
impl PartialEq for RegistryArtifact
Source§impl Serialize for RegistryArtifact
impl Serialize for RegistryArtifact
impl StructuralPartialEq for RegistryArtifact
Auto Trait Implementations§
impl Freeze for RegistryArtifact
impl RefUnwindSafe for RegistryArtifact
impl Send for RegistryArtifact
impl Sync for RegistryArtifact
impl Unpin for RegistryArtifact
impl UnsafeUnpin for RegistryArtifact
impl UnwindSafe for RegistryArtifact
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