MCPcopy Create free account
hub / github.com/CodeSentryAI/lockbud / from_str

Method from_str

src/interest/memory/uninit.rs:62–69  ·  view source on GitHub ↗
(path: &str)

Source from the content-addressed store, hash-verified

60
61 #[inline]
62 fn from_str(path: &str) -> Option<Self> {
63 for (k, v) in UNINIT_API_REGEX.iter() {
64 if v.is_match(path) {
65 return Some(*k);
66 }
67 }
68 None
69 }
70}
71
72#[cfg(test)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected