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 {}