pub trait ToDescriptorTree<Pk: MiniscriptKey> {
// Required method
fn to_tree(&self) -> DescriptorTree<Pk>;
}Expand description
A trait to construct a descriptor tree
Required Methods§
Sourcefn to_tree(&self) -> DescriptorTree<Pk>
fn to_tree(&self) -> DescriptorTree<Pk>
Returns a descriptor tree
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".