(&self)
| 389 | type Target = [u32]; |
| 390 | |
| 391 | fn deref(&self) -> &Self::Target { |
| 392 | match self { |
| 393 | Self::Single(single) => core::slice::from_ref(single), |
| 394 | Self::Multi(multi) => multi.as_ref(), |
| 395 | } |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | /// Fine-grained parameter patching. |