resynth 0.4.0

A packet synthesis language
Documentation
1
2
3
4
5
use crate::sym::Symbol;

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