MCPcopy Create free account
hub / github.com/cosdata/cosdata / attribute_value

Function attribute_value

org/src/cosql.rs:188–196  ·  view source on GitHub ↗
(input: &str)

Source from the content-addressed store, hash-verified

186}
187
188fn attribute_value(input: &str) -> IResult<&str, AttributeValue> {
189 map(
190 tuple((ws(identifier), ws(char(':')), ws(value))),
191 |(name, _, value)| AttributeValue {
192 name: name.to_string(),
193 value,
194 },
195 )(input)
196}
197
198#[derive(Debug)]
199struct EntityInsertion {

Callers

nothing calls this directly

Calls 1

wsFunction · 0.70

Tested by

no test coverage detected