Function which should be called on union de-serialization. Returns: int: Int of union discriminator.
(self)
| 155 | return self.read_uint32() |
| 156 | |
| 157 | def start_read_union(self): |
| 158 | """ Function which should be called on union de-serialization. |
| 159 | |
| 160 | Returns: |
| 161 | int: Int of union discriminator. |
| 162 | """ |
| 163 | return self.read_int32() |
| 164 | |
| 165 | def read_null_flag(self): |
| 166 | return self.read_uint8() |
nothing calls this directly
no test coverage detected