(&self)
| 66 | } |
| 67 | |
| 68 | fn dataclass_access(&self) -> Result<Option<PyDataclassAccess<'py>>> { |
| 69 | if let Some(dc) = DataclassCandidate::try_new(self.input) { |
| 70 | Some(PyDataclassAccess::new(dc)).transpose() |
| 71 | } else { |
| 72 | Ok(None) |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | fn deserialize_any_int<'de, V>(&self, int: &Bound<'_, PyInt>, visitor: V) -> Result<V::Value> |
| 77 | where |