Enum Response
lib:: parsers:: response
pub enum Response<A> { Success(A, usize, bool), Reject(usize, bool), }
Success(A, usize, bool)
Reject(usize, bool)
impl<A, B> Fold<A, B> for Response<A>
fn fold( self, success: fn(_: A, _: usize, _: bool) -> B, reject: fn(_: usize, _: bool) -> B) -> B
impl<A> Send for Response<A> where A: Send,
impl<A> Sync for Response<A> where A: Sync,