Home
last modified time | relevance | path

Searched refs:STRING_EXAMPLE (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_json/benches/
H A Ddeserialize_json_cmp.rs61 let _value = JsonValue::from_str(STRING_EXAMPLE).unwrap(); in string_deserialize_perf_ylong_json()
151 let _value: Value = serde_json::from_str(STRING_EXAMPLE).unwrap(); in string_deserialize_perf_serde_json()
H A Dserialize_json_cmp.rs62 let value = JsonValue::from_str(STRING_EXAMPLE).unwrap(); in string_serialize_perf_ylong_json()
162 let value: Value = serde_json::from_str(STRING_EXAMPLE).unwrap(); in string_serialize_perf_serde_json()
/ohos5.0/commonlibrary/rust/ylong_json/benches/task_helpers/
H A Dmod.rs19 pub const STRING_EXAMPLE: &str = "\"Hello\""; const