(&self)
| 86 | } |
| 87 | |
| 88 | pub fn runtime_events(&self) -> &[RuntimeEvent] { |
| 89 | match self { |
| 90 | Self::Dstack { runtime_events, .. } | Self::DstackPod { runtime_events, .. } => { |
| 91 | runtime_events.as_slice() |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | pub fn config(&self) -> &str { |
| 97 | match self { |
no outgoing calls