(t: &str)
| 531 | } |
| 532 | |
| 533 | fn is_sequences(t: &str) -> bool { |
| 534 | if t.starts_with("&[") |
| 535 | || t.starts_with("Vec") |
| 536 | || t.starts_with("&Vec") |
| 537 | || t.starts_with("std::vec::Vec") |
| 538 | { |
| 539 | return true; |
| 540 | } |
| 541 | false |
| 542 | } |
| 543 | |
| 544 | fn is_static_str(t: &str) -> bool { |
| 545 | return match t { |
no outgoing calls
no test coverage detected