You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.
Given that IResult is returned by parse_response, it would be useful for imap-proto to re-export nom::IResult (as well as perhaps the various types included in its variants) so that users of this crate do not need to explicitly pull in nom.
The text was updated successfully, but these errors were encountered:
Yeah -- I experimented with exporting a type alias called ParserResult to abstract over the nom dependency a little bit, but that did not seem to work so well because the enum variants don't seem to be accessible through the alias. They really should be to make it ergonomic to consume the result, so I'll need to do a bit more experimentation.
Given that
IResult
is returned byparse_response
, it would be useful forimap-proto
to re-exportnom::IResult
(as well as perhaps the various types included in its variants) so that users of this crate do not need to explicitly pull innom
.The text was updated successfully, but these errors were encountered: