(self)
| 884 | } |
| 885 | |
| 886 | fn finish(self) -> Map<String, Value> { |
| 887 | let mut map = Map::new(); |
| 888 | for (k, v) in self.generated { |
| 889 | map.insert(k, v); |
| 890 | } |
| 891 | map |
| 892 | } |
| 893 | } |
| 894 | |
| 895 | fn apply_schema_description(schema: &mut Value, doc: &str) { |
no outgoing calls
no test coverage detected