(args: &Dictionary, key: &str)
| 1225 | } |
| 1226 | |
| 1227 | fn bool_value(args: &Dictionary, key: &str) -> Option<bool> { |
| 1228 | args.get(key).and_then(Value::as_boolean) |
| 1229 | } |
| 1230 | |
| 1231 | fn integer_value(args: &Dictionary, key: &str) -> Option<u64> { |
| 1232 | let value = args.get(key)?; |
no test coverage detected