pub struct Lockfile {
pub generated_at: u64,
pub generator: String,
pub content_hash: String,
pub artifacts: Vec<LockedArtifact>,
pub environment: LockfileEnvironment,
}Expand description
Lockfile for hermetic builds
Fields§
§generated_at: u64When the lockfile was generated
generator: StringGenerator version
content_hash: StringHash of the lockfile content for verification
artifacts: Vec<LockedArtifact>Locked artifacts
environment: LockfileEnvironmentCaptured environment for reproducibility
Implementations§
Source§impl Lockfile
impl Lockfile
Sourcepub fn add_artifact(&mut self, artifact: LockedArtifact)
pub fn add_artifact(&mut self, artifact: LockedArtifact)
Add a locked artifact
Sourcepub fn get_artifact(&self, id: &str) -> Option<&LockedArtifact>
pub fn get_artifact(&self, id: &str) -> Option<&LockedArtifact>
Get artifact by ID
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lockfile
impl RefUnwindSafe for Lockfile
impl Send for Lockfile
impl Sync for Lockfile
impl Unpin for Lockfile
impl UnsafeUnpin for Lockfile
impl UnwindSafe for Lockfile
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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