breakers 0.1.4

Interpreter for the Breaker livecoding language
Documentation
1
2
3
4
5
6
/// A trait for converting a tree-sitter node into a Rust type.
pub trait FromNode {
    fn from_node(node: &tree_sitter::Node, source: &str) -> Option<Self>
    where
        Self: Sized;
}