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