librasn / rasn

A Safe #[no_std] ASN.1 Codec Framework
Other
199 stars 50 forks source link

Fix Result scoping #162

Closed orthecreedence closed 1 year ago

orthecreedence commented 1 year ago

Fixes an instance where Result is used in the proc macros instead of core::result::Result. Without scoping, any crate-local types named Result confuse the compiler.

XAMPPRocky commented 1 year ago

Thank you for your PR!