(&mut self)
| 153 | |
| 154 | impl<'a> GetMut<'a, &'a mut Map> for Data { |
| 155 | fn get_mut(&mut self) -> &mut Map { |
| 156 | match self.ty { |
| 157 | DataType::Collection(CollectionType::Map) => self.data.as_ref_mut().unwrap(), |
| 158 | _ => unreachable!("type is not match"), |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | impl<'a> GetMut<'a, &'a mut CowList> for Data { |
nothing calls this directly
no outgoing calls
no test coverage detected