(&self)
| 70 | |
| 71 | fn as_str(&self) -> &str { |
| 72 | &self.0 |
| 73 | } |
| 74 | |
| 75 | fn insert_text(&mut self, text: &str, char_index: egui::text::CharIndex) -> usize { |
| 76 | let mut text_string = text.to_string(); |
| 77 | text_string.retain(|c| c.is_ascii_hexdigit()); |
nothing calls this directly
no outgoing calls
no test coverage detected