pub struct StructuralDigest {
pub digest_id: String,
pub artifact_kind: ArtifactKind,
pub hash: [u8; 32],
pub source_node_id: String,
pub source_path: String,
pub version: u32,
}Expand description
PSP-5 Phase 3: Hash of a compile-critical structural artifact
Structural digests represent machine-verifiable content (exported signatures, schemas, symbol inventories) that nodes depend on. When the digest changes, dependent nodes must re-verify.
Fields§
§digest_id: StringUnique digest identifier
artifact_kind: ArtifactKindWhat kind of structural artifact this is
hash: [u8; 32]SHA-256 hash of the artifact content
source_node_id: StringNode that produced this artifact
source_path: StringSource file path (relative to workspace)
version: u32Monotonically increasing version
Implementations§
Trait Implementations§
Source§impl Clone for StructuralDigest
impl Clone for StructuralDigest
Source§fn clone(&self) -> StructuralDigest
fn clone(&self) -> StructuralDigest
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 StructuralDigest
impl Debug for StructuralDigest
Source§impl<'de> Deserialize<'de> for StructuralDigest
impl<'de> Deserialize<'de> for StructuralDigest
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
Auto Trait Implementations§
impl Freeze for StructuralDigest
impl RefUnwindSafe for StructuralDigest
impl Send for StructuralDigest
impl Sync for StructuralDigest
impl Unpin for StructuralDigest
impl UnsafeUnpin for StructuralDigest
impl UnwindSafe for StructuralDigest
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