Trait miniscript::expression::FromTree[][src]

pub trait FromTree: Sized {
    fn from_tree(top: &Tree<'_>) -> Result<Self, Error>;
}
Expand description

A trait for extracting a structure from a Tree representation in token form

Required methods

Extract a structure from Tree representation

Implementations on Foreign Types

Implementors