From e49bb3d37a867734c970972931c9fdb4317792d3 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 30 Jun 2023 19:32:49 +0000 Subject: [PATCH] `ParseResultA` --- src/rcore.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rcore.rs b/src/rcore.rs index c59a577..def07a7 100644 --- a/src/rcore.rs +++ b/src/rcore.rs @@ -62,6 +62,8 @@ pub type Fctr<'a, Ctx, A> = >::Fctr; /// Shorthand for the type of vaalues returned by [`Factory::deserialize`]. pub type ParseResult<'a, Ctx, F> = Result, >::ParseError>; +pub type ParseResultA<'a, Ctx, A> = Result>; + pub struct DeCtxT<'a: 'c, 'c, Ctx: Context<'a>> { deserializer: &'c mut dyn Deserializer, resolver: &'c Rc>,