MCPcopy Create free account
hub / github.com/dxx/feignhttp / is_support_struct

Function is_support_struct

codegen/src/func.rs:525–531  ·  view source on GitHub ↗
(t: &str)

Source from the content-addressed store, hash-verified

523}
524
525fn 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
533fn is_sequences(t: &str) -> bool {
534 if t.starts_with("&[")

Callers 1

filter_structFunction · 0.70

Calls 3

is_static_strFunction · 0.85
is_support_typesFunction · 0.70
is_sequencesFunction · 0.70

Tested by

no test coverage detected