(cls, f, protover=PROTO_VERSION)
| 215 | |
| 216 | @classmethod |
| 217 | def msg_deser(cls, f, protover=PROTO_VERSION): |
| 218 | c = cls() |
| 219 | c.alert = CAlert.stream_deserialize(f) |
| 220 | return c |
| 221 | |
| 222 | def msg_ser(self, f): |
| 223 | self.alert.stream_serialize(f) |
nothing calls this directly
no test coverage detected