Trait Element

Source
pub trait Element:
    Clone
    + Eq
    + PartialEq
    + Hash { }
Expand description

An element of a Merkle tree.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Clone + Eq + PartialEq + Hash> Element for T