(&mut self, offset: i32)
| 116 | pub(crate) fn set_cg(&mut self, cg: u64) { |
| 117 | *self.cg.borrow_mut() = cg; |
| 118 | } |
| 119 | |
| 120 | pub(crate) fn set_text_tx(&mut self, text_tx: Sender<Arc<RwLock<DisplayText>>>) { |
| 121 | self.text_tx = Some(text_tx); |
| 122 | } |
| 123 | |
| 124 | pub(crate) fn set_auto_tx(&mut self, auto_tx: Sender<Duration>) { |
| 125 | self.auto_tx = Some(auto_tx); |
| 126 | } |
| 127 |
no test coverage detected