(&'a mut self, token: &'a mut NodeOwner)
| 203 | } |
| 204 | |
| 205 | pub fn as_variant_mut<'a, T>(&'a mut self, token: &'a mut NodeOwner) -> Option<&'a mut T> where T: 'static + Clone { |
| 206 | let x = self.as_variant::<T>(token); |
| 207 | //(&mut x?.clone() as &mut (dyn core::any::Any + 'static)).downcast_mut::<T>() |
| 208 | panic!() |
| 209 | } |
| 210 | |
| 211 | fn set_time(&mut self, time: Timestamp) { |
| 212 | self.time = time; |
nothing calls this directly
no outgoing calls
no test coverage detected