(self, v: &str)
| 137 | } |
| 138 | |
| 139 | fn visit_str<E: de::Error>(self, v: &str) -> std::result::Result<usize, E> { |
| 140 | parse_memory_size(v).map_err(|e| de::Error::custom(format!("memory_limit: {e}"))) |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | deserializer.deserialize_any(MemSizeVisitor) |
nothing calls this directly
no test coverage detected