File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ impl<'de, 'a> serde::Deserializer<'de> for EscapedDeserializer<'a> {
85
85
) )
86
86
}
87
87
88
- /// Forwards deserialization to the [`Self:: deserialize_bytes`]
88
+ /// Forwards deserialization to the [`deserialize_bytes`](#method.deserialize_bytes)
89
89
fn deserialize_byte_buf < V > ( self , visitor : V ) -> Result < V :: Value , Self :: Error >
90
90
where
91
91
V : Visitor < ' de > ,
Original file line number Diff line number Diff line change @@ -516,15 +516,15 @@ where
516
516
forward ! ( deserialize_any) ;
517
517
forward ! ( deserialize_ignored_any) ;
518
518
519
- /// Tuple representation is the same as [sequences](Self:: deserialize_seq).
519
+ /// Tuple representation is the same as [sequences](#method. deserialize_seq).
520
520
fn deserialize_tuple < V > ( self , _len : usize , visitor : V ) -> Result < V :: Value , DeError >
521
521
where
522
522
V : Visitor < ' de > ,
523
523
{
524
524
self . deserialize_seq ( visitor)
525
525
}
526
526
527
- /// Named tuple representation is the same as [unnamed tuples](Self:: deserialize_tuple).
527
+ /// Named tuple representation is the same as [unnamed tuples](#method. deserialize_tuple).
528
528
fn deserialize_tuple_struct < V > (
529
529
self ,
530
530
_name : & ' static str ,
@@ -680,15 +680,15 @@ where
680
680
forward ! ( deserialize_any) ;
681
681
forward ! ( deserialize_ignored_any) ;
682
682
683
- /// Representation of tuples the same as [sequences](Self:: deserialize_seq).
683
+ /// Representation of tuples the same as [sequences](#method. deserialize_seq).
684
684
fn deserialize_tuple < V > ( self , _len : usize , visitor : V ) -> Result < V :: Value , DeError >
685
685
where
686
686
V : Visitor < ' de > ,
687
687
{
688
688
self . deserialize_seq ( visitor)
689
689
}
690
690
691
- /// Representation of named tuples the same as [unnamed tuples](Self:: deserialize_tuple).
691
+ /// Representation of named tuples the same as [unnamed tuples](#method. deserialize_tuple).
692
692
fn deserialize_tuple_struct < V > (
693
693
self ,
694
694
_name : & ' static str ,
Original file line number Diff line number Diff line change @@ -952,7 +952,7 @@ impl<'i, R: BufRead> XmlRead<'i> for IoReader<R> {
952
952
/// XML input source that reads from a slice of bytes and can borrow from it.
953
953
///
954
954
/// You cannot create it, it is created automatically when you call
955
- /// [`Deserializer::from_str`] or [`Deserializer::from_slice`]
955
+ /// [`Deserializer::from_str`].
956
956
pub struct SliceReader < ' de > {
957
957
reader : Reader < & ' de [ u8 ] > ,
958
958
}
You can’t perform that action at this time.
0 commit comments