(t: &str)
| 523 | } |
| 524 | |
| 525 | fn is_support_struct(t: &str) -> bool { |
| 526 | if is_support_types(t) || is_sequences(t) || is_static_str(t) { |
| 527 | false |
| 528 | } else { |
| 529 | true |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | fn is_sequences(t: &str) -> bool { |
| 534 | if t.starts_with("&[") |
no test coverage detected