1 2 3 4 5
use crate::bind::Result; pub(crate) trait Parse{ fn parse(&mut self, text: &str) -> Result; }