MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / is_valid_resource_char

Function is_valid_resource_char

crates/hyperqueue/src/worker/parser.rs:173–175  ·  view source on GitHub ↗
(c: char)

Source from the content-addressed store, hash-verified

171}
172
173pub fn is_valid_resource_char(c: char) -> bool {
174 c.is_ascii_alphanumeric() || c == '/'
175}
176
177fn parse_resource_name() -> impl CharParser<String> {
178 let identifier = filter(|&c| is_valid_starting_resource_char(c))

Callers 2

p_resource_identifierFunction · 0.85
parse_resource_nameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected