From 237128d9942beec3e3f3f454ce9d2edd5bc8f439 Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 1 Jul 2023 00:54:15 +0000 Subject: [PATCH] `ParseResultA` docs --- src/rcore.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rcore.rs b/src/rcore.rs index 3cc805d..702e09d 100644 --- a/src/rcore.rs +++ b/src/rcore.rs @@ -66,6 +66,7 @@ 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>; +/// [`ParseResult`] associated with a [Mentionable] (instead of a [Factory]). pub type ParseResultA<'a, Ctx, A> = Result>; /// Trait representing deserialisation rules for [Mentionable]s.