(self, len: usize)
| 418 | } |
| 419 | |
| 420 | fn serialize_tuple(self, len: usize) -> Result<PythonCollectionSerializer<'py, P>> { |
| 421 | Ok(PythonCollectionSerializer { |
| 422 | items: Vec::with_capacity(len), |
| 423 | py: self.py, |
| 424 | _types: PhantomData, |
| 425 | }) |
| 426 | } |
| 427 | |
| 428 | fn serialize_tuple_struct( |
| 429 | self, |
no outgoing calls
no test coverage detected