Clone the path, appending the index to the returned value.
(&self, index: u32)
| 675 | if self.0.len() == 1 { |
| 676 | ParamPath::Single(self.0[0]) |
| 677 | } else { |
| 678 | ParamPath::Multi(ArcGc::new_unsized(|| Arc::<[u32]>::from(self.0.as_slice()))) |
| 679 | } |
| 680 | } |
| 681 | } |
| 682 | |
| 683 | /// An event queue for diffing. |
| 684 | pub trait EventQueue { |
no test coverage detected