1use crate::core::ParserRunner; 2use std::fmt::Debug; 3 4pub trait DiscardParser<'a>: ParserRunner<'a> { 5 fn discard(self) -> Self::P<'a, Self::Input, ()> 6 where 7 Self::Output: Debug + 'a; 8}