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§
Source§impl StructuralDigest
impl StructuralDigest
Sourcepub fn from_content(
source_node_id: impl Into<String>,
source_path: impl Into<String>,
artifact_kind: ArtifactKind,
content: &[u8],
) -> StructuralDigest
pub fn from_content( source_node_id: impl Into<String>, source_path: impl Into<String>, artifact_kind: ArtifactKind, content: &[u8], ) -> StructuralDigest
Create a new digest from raw content
Sourcepub fn matches(&self, other: &StructuralDigest) -> bool
pub fn matches(&self, other: &StructuralDigest) -> bool
Check if this digest matches another (same content hash)
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<StructuralDigest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StructuralDigest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for StructuralDigest
impl Serialize for StructuralDigest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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
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