|
104 | 104 | //! a JSON string to a Rust string with [`as_str()`] or avoiding the use of
|
105 | 105 | //! `Value` as described in the following section.
|
106 | 106 | //!
|
107 |
| -//! [`as_str()`]: https://docs.serde.rs/serde_json/enum.Value.html#method.as_str |
| 107 | +//! [`as_str()`]: crate::Value::as_str |
108 | 108 | //!
|
109 | 109 | //! The `Value` representation is sufficient for very basic tasks but can be
|
110 | 110 | //! tedious to work with for anything more significant. Error handling is
|
|
290 | 290 | //! For JSON support in Serde without a memory allocator, please see the
|
291 | 291 | //! [`serde-json-core`] crate.
|
292 | 292 | //!
|
293 |
| -//! [value]: https://docs.serde.rs/serde_json/value/enum.Value.html |
294 |
| -//! [from_str]: https://docs.serde.rs/serde_json/de/fn.from_str.html |
295 |
| -//! [from_slice]: https://docs.serde.rs/serde_json/de/fn.from_slice.html |
296 |
| -//! [from_reader]: https://docs.serde.rs/serde_json/de/fn.from_reader.html |
297 |
| -//! [to_string]: https://docs.serde.rs/serde_json/ser/fn.to_string.html |
298 |
| -//! [to_vec]: https://docs.serde.rs/serde_json/ser/fn.to_vec.html |
299 |
| -//! [to_writer]: https://docs.serde.rs/serde_json/ser/fn.to_writer.html |
300 |
| -//! [macro]: https://docs.serde.rs/serde_json/macro.json.html |
| 293 | +//! [value]: crate::value::Value |
| 294 | +//! [from_str]: crate::de::from_str |
| 295 | +//! [from_slice]: crate::de::from_slice |
| 296 | +//! [from_reader]: crate::de::from_reader |
| 297 | +//! [to_string]: crate::ser::to_string |
| 298 | +//! [to_vec]: crate::ser::to_vec |
| 299 | +//! [to_writer]: crate::ser::to_writer |
| 300 | +//! [macro]: crate::json |
301 | 301 | //! [`serde-json-core`]: https://github.com/rust-embedded-community/serde-json-core
|
302 | 302 |
|
303 | 303 | #![doc(html_root_url = "https://docs.rs/serde_json/1.0.91")]
|
|
0 commit comments