1 2 3 4 5 6 7
use std::fmt::Debug; use crate::parser::CustomParseError; pub trait ParseContext: Clone + Default + Debug { type Error: Into<CustomParseError>; }