Function which should be called on list de-serialization. Returns: int: Int of list length.
(self)
| 147 | return data |
| 148 | |
| 149 | def start_read_list(self): |
| 150 | """ Function which should be called on list de-serialization. |
| 151 | |
| 152 | Returns: |
| 153 | int: Int of list length. |
| 154 | """ |
| 155 | return self.read_uint32() |
| 156 | |
| 157 | def start_read_union(self): |
| 158 | """ Function which should be called on union de-serialization. |
nothing calls this directly
no test coverage detected