pub trait Version: Version {
// Required method
fn block_to_history_node(
block: Arc<Block>,
network: &Network,
sapling_root: &Root,
orchard_root: &Root,
) -> Self::NodeData;
}Expand description
A trait to represent a version of Tree.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".