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 Aug 16, 2021. It is now read-only.
error[E0599]: no method named `cause` found for type `&nom::IError` in the current scope
--> src/main.rs:56:5
|
56 | / error_chain! {
57 | | foreign_links {
58 | | Nom(::nom::IError);
59 | | Io(::std::io::Error);
... |
65 | | }
66 | | }
| |_____^
|
= note: this error originates in a macro outside of the current crate
error[E0277]: the trait bound `nom::IError: std::fmt::Display` is not satisfied
--> src/main.rs:56:5
|
56 | / error_chain! {
57 | | foreign_links {
58 | | Nom(::nom::IError);
59 | | Io(::std::io::Error);
... |
65 | | }
66 | | }
| |_____^ `nom::IError` cannot be formatted with the default formatter; try using `:?` instead if you are using a format string
|
= help: the trait `std::fmt::Display` is not implemented for `nom::IError`
= note: required because of the requirements on the impl of `std::fmt::Display` for `&nom::IError`
= note: required by `std::fmt::Display::fmt`
= note: this error originates in a macro outside of the current crate
error[E0277]: the trait bound `nom::IError: std::error::Error` is not satisfied
--> src/main.rs:56:5
|
56 | / error_chain! {
57 | | foreign_links {
58 | | Nom(::nom::IError);
59 | | Io(::std::io::Error);
... |
65 | | }
66 | | }
| |_____^ the trait `std::error::Error` is not implemented for `nom::IError`
|
= note: required by `std::error::Error::description`
= note: this error originates in a macro outside of the current crate
error: aborting due to 3 previous errors
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: