pub enum PlanRuntimeCloseOutcome<R>where
R: DeviceRuntime,{
Closed(PlanRuntimeCloseReceipt),
Referenced {
resources: Arc<PlanRuntimeResources<R>>,
strong_count: usize,
deferred_cleanup: DeferredDeviceCleanupStatus,
},
}Variants§
Closed(PlanRuntimeCloseReceipt)
Referenced
Auto Trait Implementations§
impl<R> !RefUnwindSafe for PlanRuntimeCloseOutcome<R>
impl<R> !UnwindSafe for PlanRuntimeCloseOutcome<R>
impl<R> Freeze for PlanRuntimeCloseOutcome<R>
impl<R> Send for PlanRuntimeCloseOutcome<R>
impl<R> Sync for PlanRuntimeCloseOutcome<R>
impl<R> Unpin for PlanRuntimeCloseOutcome<R>
impl<R> UnsafeUnpin for PlanRuntimeCloseOutcome<R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more