pub struct FrontierLock {Show 18 fields
pub schema: String,
pub generated_at: String,
pub vela_version: String,
pub carina_kernel: String,
pub frontier_id: String,
pub canonicalization: LockCanonicalization,
pub reducer: LockPackage,
pub carina: LockKernel,
pub snapshot_hash: String,
pub event_log_hash: String,
pub proposal_state_hash: String,
pub sources_hash: String,
pub artifacts_hash: String,
pub review_hash: String,
pub proof_freshness: String,
pub proof: LockProof,
pub paths: LockPaths,
pub dependencies: Vec<LockedDependency>,
}Fields§
§schema: String§generated_at: String§vela_version: String§carina_kernel: String§frontier_id: String§canonicalization: LockCanonicalization§reducer: LockPackage§carina: LockKernel§snapshot_hash: String§event_log_hash: String§proposal_state_hash: String§sources_hash: String§artifacts_hash: String§review_hash: String§proof_freshness: String§proof: LockProof§paths: LockPaths§dependencies: Vec<LockedDependency>v0.109: pinned cross-frontier dependencies. Each entry
records the dependent frontier’s vfr_id, the
pinned_snapshot_hash declared in the manifest, and the
locator (typically an https URL or hub registry pointer)
the resolver was told to use. The lockfile reproduces this
information in one place so a downstream consumer can
verify “this frontier depended on exactly these snapshots
of those dependencies” with no manifest cross-reference.
Empty for frontiers with no cross-frontier dependencies;
preserved across pre-v0.109 locks via #[serde(default)].
Trait Implementations§
Source§impl Clone for FrontierLock
impl Clone for FrontierLock
Source§fn clone(&self) -> FrontierLock
fn clone(&self) -> FrontierLock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FrontierLock
impl Debug for FrontierLock
Source§impl<'de> Deserialize<'de> for FrontierLock
impl<'de> Deserialize<'de> for FrontierLock
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 FrontierLock
impl PartialEq for FrontierLock
Source§fn eq(&self, other: &FrontierLock) -> bool
fn eq(&self, other: &FrontierLock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FrontierLock
impl Serialize for FrontierLock
impl Eq for FrontierLock
impl StructuralPartialEq for FrontierLock
Auto Trait Implementations§
impl Freeze for FrontierLock
impl RefUnwindSafe for FrontierLock
impl Send for FrontierLock
impl Sync for FrontierLock
impl Unpin for FrontierLock
impl UnsafeUnpin for FrontierLock
impl UnwindSafe for FrontierLock
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.