We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In libstd/serialize.rs, the following is missing:
impl<S:Encoder> Encodable<S> for char { fn encode(&self, s: &S) { s.emit_char(*self) } } impl<D:Decoder> Decodable<D> for char { fn decode(d: &D) ⟶ char { d.read_char() } }
The text was updated successfully, but these errors were encountered:
Fixed in #6857
Sorry, something went wrong.
Auto merge of rust-lang#5817 - flip1995:rustup, r=flip1995
9a945c7
Rustup r? @ghost Preparation for emergency Clippyup to fix an ICE rust-lang#5816 changelog: none
No branches or pull requests
In libstd/serialize.rs, the following is missing:
The text was updated successfully, but these errors were encountered: