pub struct ManifestEntry {
pub module_id: ModuleId,
pub fingerprint: String,
pub input_path: String,
pub constraint_hash: Option<String>,
}Expand description
Per-module entry in the manifest.
Fields§
§module_id: ModuleIdThe module’s content-derived ID.
fingerprint: StringBLAKE3 fingerprint of the input file (hex-encoded).
input_path: StringOriginal input file path (for display/debugging).
constraint_hash: Option<String>BLAKE3 hash of the serialized ModuleConstraints (hex-encoded).
None if constraints have not been computed yet for this module.
Used to detect constraint-level staleness even when the input
file fingerprint is unchanged (e.g., due to upstream module changes
affecting cross-module references).
Trait Implementations§
Source§impl Clone for ManifestEntry
impl Clone for ManifestEntry
Source§fn clone(&self) -> ManifestEntry
fn clone(&self) -> ManifestEntry
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 ManifestEntry
impl Debug for ManifestEntry
Source§impl<'de> Deserialize<'de> for ManifestEntry
impl<'de> Deserialize<'de> for ManifestEntry
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 ManifestEntry
impl PartialEq for ManifestEntry
Source§impl Serialize for ManifestEntry
impl Serialize for ManifestEntry
impl StructuralPartialEq for ManifestEntry
Auto Trait Implementations§
impl Freeze for ManifestEntry
impl RefUnwindSafe for ManifestEntry
impl Send for ManifestEntry
impl Sync for ManifestEntry
impl Unpin for ManifestEntry
impl UnsafeUnpin for ManifestEntry
impl UnwindSafe for ManifestEntry
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