| 83 | pub(crate) type TextTX = Sender<Arc<RwLock<DisplayText>>>; |
| 84 | |
| 85 | pub(crate) struct DisplayText { |
| 86 | pub(crate) full_text: String, |
| 87 | pub(crate) speed: Duration, |
| 88 | current_index: usize, |
| 89 | pub(crate) is_running: bool, |
| 90 | } |
| 91 | |
| 92 | impl DisplayText { |
| 93 | pub(crate) fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected