tailhook / rust-quire

A YAML-based configuration library for Rust
https://docs.rs/quire/
Other
13 stars 5 forks source link

Change an import so that it does not get shadowed by a type parameter #2

Closed jseyfried closed 8 years ago

jseyfried commented 8 years ago

This changes a renamed import to an ordinary import so that the imported enum does not get shadowed by a type parameter.

jseyfried commented 8 years ago

The enum can be used on stable and beta Rust even though it is shadowed by a type parameter because of bug #32120, which was fixed on the nighties.

tailhook commented 8 years ago

Good to know. Thanks!