pub struct MerkleRoot(pub ContentHash);Expand description
A Merkle tree root hash representing the integrity of a set of facts.
The Merkle root changes if any fact is added, modified, or reordered. This enables:
- Tamper detection: compare roots to verify integrity
- Efficient sync: different roots mean different states
- Audit proofs: prove a fact exists without revealing all facts
Tuple Fields§
§0: ContentHashImplementations§
Source§impl MerkleRoot
impl MerkleRoot
Sourcepub fn compute(hashes: &[ContentHash]) -> Self
pub fn compute(hashes: &[ContentHash]) -> Self
Computes the Merkle root from a list of content hashes.
Uses a standard binary Merkle tree construction. Empty list returns a hash of empty string. Single element is combined with itself (Bitcoin-style).
Sourcepub fn from_context(ctx: &ContextState) -> Self
pub fn from_context(ctx: &ContextState) -> Self
Computes the Merkle root from a Context’s facts.
Facts are hashed in deterministic order (by key, then by position).
Trait Implementations§
Source§impl Clone for MerkleRoot
impl Clone for MerkleRoot
Source§fn clone(&self) -> MerkleRoot
fn clone(&self) -> MerkleRoot
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 MerkleRoot
impl Debug for MerkleRoot
Source§impl<'de> Deserialize<'de> for MerkleRoot
impl<'de> Deserialize<'de> for MerkleRoot
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 MerkleRoot
impl PartialEq for MerkleRoot
Source§fn eq(&self, other: &MerkleRoot) -> bool
fn eq(&self, other: &MerkleRoot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MerkleRoot
impl Serialize for MerkleRoot
impl Eq for MerkleRoot
impl StructuralPartialEq for MerkleRoot
Auto Trait Implementations§
impl Freeze for MerkleRoot
impl RefUnwindSafe for MerkleRoot
impl Send for MerkleRoot
impl Sync for MerkleRoot
impl Unpin for MerkleRoot
impl UnsafeUnpin for MerkleRoot
impl UnwindSafe for MerkleRoot
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.