Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d4b7c63
Documented impl From on line 367 of libserialize/json.rs
Ajacmac Aug 1, 2018
b70be5b
Adddressed #51602
PramodBisht Aug 14, 2018
352b2e7
Corrected typing description in doc
Ajacmac Aug 15, 2018
d305f68
Warn when `generic_associated_types` feature gate is enabled
varkor Aug 15, 2018
bc8cead
Account for warning in existing GAT tests
varkor Aug 15, 2018
e0d8364
std: Use target_pointer_width for BACKTRACE_ELF_SIZE
cuviper Aug 15, 2018
4cae665
Two small improvements
llogiq Aug 13, 2018
bbf0b15
Make core::sync::atomic::Ordering #[non_exhaustive]
varkor Aug 15, 2018
a502248
Make proc_macro Level #[non_exhaustive]
varkor Aug 15, 2018
ea505fd
Make std::io::Error #[non_exhaustive]
varkor Aug 15, 2018
f541ab2
Make cloudapi enums #[non_exhaustive]
varkor Aug 15, 2018
27f2a84
Remove outdated Unstable Book sections
varkor Aug 15, 2018
35a03c8
Tidy: ignore non-Markdown files when linting for the Unstable Book
varkor Aug 15, 2018
2a74d79
Tweak unclosed delimiter parser error
estebank Aug 15, 2018
1b5e29a
Do not emit "incorrect close delimiter" twice in the same place
estebank Aug 15, 2018
83268ff
syntax_ext: remove leftover span_err_if_not_stage0 macro.
eddyb Aug 15, 2018
494889e
Revert "Ignore test that fails on stage1"
eddyb Aug 15, 2018
c9274c7
fix broken test
estebank Aug 16, 2018
42efd27
Revert "Auto merge of #53134 - alexcrichton:tweak-travis, r=Mark-Simu…
kennytm Aug 9, 2018
53837db
Revert "Auto merge of #53035 - alexcrichton:debug-travis, r=kennytm"
kennytm Aug 9, 2018
b75f1ba
Revert "Use public DNS server instead of 169.254.169.254 on CI."
kennytm Aug 16, 2018
e7b65bd
enable more tests on stage1 again
RalfJung Aug 16, 2018
07ce2a3
Rollup merge of #52946 - Ajacmac:doc-impl-from, r=GuillaumeGomez
kennytm Aug 16, 2018
e606882
Rollup merge of #53313 - llogiq:two-small-improvements, r=estebank
kennytm Aug 16, 2018
1cda84b
Rollup merge of #53360 - PramodBisht:issue/51602, r=estebank
kennytm Aug 16, 2018
4968eea
Rollup merge of #53364 - varkor:gat-warn-broken, r=pnkfelix
kennytm Aug 16, 2018
098d80d
Rollup merge of #53373 - estebank:unclosed, r=petrochenkov
kennytm Aug 16, 2018
0c9e0e3
Rollup merge of #53377 - cuviper:pointer-elf_size, r=alexcrichton
kennytm Aug 16, 2018
6e98ed9
Rollup merge of #53395 - varkor:__Nonexhaustive-to-non_exhaustive, r=…
kennytm Aug 16, 2018
ae3ebf0
Rollup merge of #53399 - varkor:ignore-non-md-unstable_book, r=nikoma…
kennytm Aug 16, 2018
1cb13b2
Rollup merge of #53412 - eddyb:stage-who, r=alexcrichton
kennytm Aug 16, 2018
a68e61a
Rollup merge of #53234 - kennytm:debug-9696, r=alexcrichton
kennytm Aug 16, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Documented impl From on line 367 of libserialize/json.rs
  • Loading branch information
Ajacmac committed Aug 1, 2018
commit d4b7c6359e8819f6b13a819672974a316a008b59
3 changes: 3 additions & 0 deletions src/libserialize/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,9 @@ impl std::error::Error for EncoderError {
}

impl From<fmt::Error> for EncoderError {
/// Converts a `fmt::Error` into `EncoderError`
///
/// This conversion does not allocate memory.
fn from(err: fmt::Error) -> EncoderError { EncoderError::FmtError(err) }
}

Expand Down