resynth 0.1.11

A packet synthesis language
Documentation
use crate::sym::Symbol;

pub trait Dispatchable {
    fn lookup_symbol(&self, name: &str) -> Option<Symbol>;
}