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]) -> MerkleRoot
pub fn compute(hashes: &[ContentHash]) -> MerkleRoot
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) -> MerkleRoot
pub fn from_context(ctx: &ContextState) -> MerkleRoot
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 · 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<MerkleRoot, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MerkleRoot, <__D as Deserializer<'de>>::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§impl Serialize for MerkleRoot
impl Serialize for MerkleRoot
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
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.