(value: String)
| 1607 | use prost_types::{Struct, Value, value::Kind}; |
| 1608 | |
| 1609 | fn string_value(value: String) -> Value { |
| 1610 | Value { |
| 1611 | kind: Some(Kind::StringValue(value)), |
| 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | let mut limits = std::collections::BTreeMap::new(); |
| 1616 | if let Some(cpu) = cpu { |
no outgoing calls
no test coverage detected