MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / as_string

Method as_string

graphlite/src/storage/value.rs:176–181  ·  view source on GitHub ↗

Extract as string if possible

(&self)

Source from the content-addressed store, hash-verified

174
175 /// Extract as string if possible
176 pub fn as_string(&self) -> Option<&str> {
177 match self {
178 Value::String(s) => Some(s),
179 _ => None,
180 }
181 }
182
183 /// Extract as boolean if possible
184 pub fn as_boolean(&self) -> Option<bool> {

Callers 15

execute_ddl_operationMethod · 0.45
validate_schemaMethod · 0.45
execute_ddl_operationMethod · 0.45
execute_ddl_operationMethod · 0.45
executeMethod · 0.45
value_to_stringMethod · 0.45
extract_trim_charMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45

Calls

no outgoing calls