(&self)
| 321 | |
| 322 | impl<GA> Instance<GA> { |
| 323 | fn as_ref(&self) -> Instance<&GA> { |
| 324 | Instance { |
| 325 | generic_id: self.generic_id, |
| 326 | generic_args: &self.generic_args, |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | fn map_generic_args<T, U, GA2>(self, f: impl FnMut(T) -> U) -> Instance<GA2> |
| 331 | where |
no outgoing calls
no test coverage detected