Return a reference-less snapshot to the indicated compute instance.
(
&self,
id: ComputeInstanceId,
)
| 4212 | |
| 4213 | /// Return a reference-less snapshot to the indicated compute instance. |
| 4214 | pub fn instance_snapshot( |
| 4215 | &self, |
| 4216 | id: ComputeInstanceId, |
| 4217 | ) -> Result<ComputeInstanceSnapshot, InstanceMissing> { |
| 4218 | ComputeInstanceSnapshot::new(&self.controller, id) |
| 4219 | } |
| 4220 | |
| 4221 | /// Call into the compute controller to install a finalized dataflow, and |
| 4222 | /// initialize the read policies for its exported readable objects. |
no outgoing calls