(self, len: usize, visitor: V)
| 611 | } |
| 612 | |
| 613 | fn tuple_variant<V>(self, len: usize, visitor: V) -> Result<V::Value> |
| 614 | where |
| 615 | V: de::Visitor<'de>, |
| 616 | { |
| 617 | visitor.visit_seq(self.de.sequence_access(Some(len))?) |
| 618 | } |
| 619 | |
| 620 | fn struct_variant<V>(self, _fields: &'static [&'static str], visitor: V) -> Result<V::Value> |
| 621 | where |
nothing calls this directly
no test coverage detected