utterance 0.1.2

A parser library for creating readable, natural-language-inspired domain-specific languages.
Documentation
1
2
3
4
5
use std::fmt::Debug;

pub trait ParseContext: 'static + Clone + Default + Debug + Send + Sync {}

impl<C> ParseContext for C where C: 'static + Clone + Debug + Default + Send + Sync {}