(&self)
| 45 | } |
| 46 | } |
| 47 | pub fn convert_event(&self) -> Box<dyn Message> { |
| 48 | // convert event. it takes outbox reference and target type that is to be deserialized. |
| 49 | // you can insert any number of desired type as long as it is outboxable type. |
| 50 | convert_event!(self, BoardCreated) |
| 51 | } |
| 52 | pub fn tag_processed(&mut self) { |
| 53 | self.processed = true |
| 54 | } |
no outgoing calls