(r: CowMap)
| 180 | |
| 181 | impl From<CowMap> for Data { |
| 182 | fn from(r: CowMap) -> Self { |
| 183 | Self { |
| 184 | ty: DataType::Collection(CollectionType::CowMap), |
| 185 | data: DataStorage::CowRef(r), |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | impl From<Map> for Data { |
nothing calls this directly
no outgoing calls
no test coverage detected