| 297 | |
| 298 | #[derive(Debug)] |
| 299 | pub struct ArrayInfo { |
| 300 | pub is_ascii: bool, |
| 301 | pub null_terminated: bool, |
| 302 | pub prefix_match: usize, |
| 303 | } |
| 304 | |
| 305 | impl ArrayInfo { |
| 306 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected