mirror of
https://github.com/serde-rs/json.git
synced 2025-11-03 15:03:04 +00:00
Replace docs.serde.rs links with intra-rustdoc links
This commit is contained in:
parent
9947ae606e
commit
9edf7fa9b3
18
src/lib.rs
18
src/lib.rs
@ -104,7 +104,7 @@
|
|||||||
//! a JSON string to a Rust string with [`as_str()`] or avoiding the use of
|
//! a JSON string to a Rust string with [`as_str()`] or avoiding the use of
|
||||||
//! `Value` as described in the following section.
|
//! `Value` as described in the following section.
|
||||||
//!
|
//!
|
||||||
//! [`as_str()`]: https://docs.serde.rs/serde_json/enum.Value.html#method.as_str
|
//! [`as_str()`]: crate::Value::as_str
|
||||||
//!
|
//!
|
||||||
//! The `Value` representation is sufficient for very basic tasks but can be
|
//! The `Value` representation is sufficient for very basic tasks but can be
|
||||||
//! tedious to work with for anything more significant. Error handling is
|
//! tedious to work with for anything more significant. Error handling is
|
||||||
@ -290,14 +290,14 @@
|
|||||||
//! For JSON support in Serde without a memory allocator, please see the
|
//! For JSON support in Serde without a memory allocator, please see the
|
||||||
//! [`serde-json-core`] crate.
|
//! [`serde-json-core`] crate.
|
||||||
//!
|
//!
|
||||||
//! [value]: https://docs.serde.rs/serde_json/value/enum.Value.html
|
//! [value]: crate::value::Value
|
||||||
//! [from_str]: https://docs.serde.rs/serde_json/de/fn.from_str.html
|
//! [from_str]: crate::de::from_str
|
||||||
//! [from_slice]: https://docs.serde.rs/serde_json/de/fn.from_slice.html
|
//! [from_slice]: crate::de::from_slice
|
||||||
//! [from_reader]: https://docs.serde.rs/serde_json/de/fn.from_reader.html
|
//! [from_reader]: crate::de::from_reader
|
||||||
//! [to_string]: https://docs.serde.rs/serde_json/ser/fn.to_string.html
|
//! [to_string]: crate::ser::to_string
|
||||||
//! [to_vec]: https://docs.serde.rs/serde_json/ser/fn.to_vec.html
|
//! [to_vec]: crate::ser::to_vec
|
||||||
//! [to_writer]: https://docs.serde.rs/serde_json/ser/fn.to_writer.html
|
//! [to_writer]: crate::ser::to_writer
|
||||||
//! [macro]: https://docs.serde.rs/serde_json/macro.json.html
|
//! [macro]: crate::json
|
||||||
//! [`serde-json-core`]: https://github.com/rust-embedded-community/serde-json-core
|
//! [`serde-json-core`]: https://github.com/rust-embedded-community/serde-json-core
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/serde_json/1.0.91")]
|
#![doc(html_root_url = "https://docs.rs/serde_json/1.0.91")]
|
||||||
|
|||||||
@ -85,10 +85,10 @@
|
|||||||
//! # untyped_example().unwrap();
|
//! # untyped_example().unwrap();
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! [macro]: https://docs.serde.rs/serde_json/macro.json.html
|
//! [macro]: crate::json
|
||||||
//! [from_str]: https://docs.serde.rs/serde_json/de/fn.from_str.html
|
//! [from_str]: crate::de::from_str
|
||||||
//! [from_slice]: https://docs.serde.rs/serde_json/de/fn.from_slice.html
|
//! [from_slice]: crate::de::from_slice
|
||||||
//! [from_reader]: https://docs.serde.rs/serde_json/de/fn.from_reader.html
|
//! [from_reader]: crate::de::from_reader
|
||||||
|
|
||||||
use crate::error::Error;
|
use crate::error::Error;
|
||||||
use crate::io;
|
use crate::io;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user