mirror of
https://github.com/serde-rs/json.git
synced 2025-09-30 06:21:34 +00:00
commit
a8e6f75a9b
@ -81,7 +81,7 @@ pub trait Read<'de>: private::Sealed {
|
||||
#[doc(hidden)]
|
||||
fn ignore_str(&mut self) -> Result<()>;
|
||||
|
||||
/// Assumes the previous byte was a hex escape sequnce ('\u') in a string.
|
||||
/// Assumes the previous byte was a hex escape sequence ('\u') in a string.
|
||||
/// Parses next hexadecimal sequence.
|
||||
#[doc(hidden)]
|
||||
fn decode_hex_escape(&mut self) -> Result<u16>;
|
||||
|
@ -198,7 +198,7 @@ impl<T: Clone + Into<Value>> From<&[T]> for Value {
|
||||
}
|
||||
|
||||
impl<T: Into<Value>> FromIterator<T> for Value {
|
||||
/// Convert an iteratable type to a `Value`
|
||||
/// Convert an iterable type to a `Value`
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@ -228,7 +228,7 @@ impl<T: Into<Value>> FromIterator<T> for Value {
|
||||
}
|
||||
|
||||
impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value {
|
||||
/// Convert an iteratable type to a `Value`
|
||||
/// Convert an iterable type to a `Value`
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user