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

Function is_sequences

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

Source from the content-addressed store, hash-verified

531}
532
533fn 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
544fn is_static_str(t: &str) -> bool {
545 return match t {

Callers 2

filter_query_arrayFunction · 0.70
is_support_structFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected