pub struct ProvisionedPlanResources<R>where
R: DeviceRuntime,{ /* private fields */ }Expand description
The indivisible result of plan provisioning. Product code must consume
this owner through Self::into_parts, which hands out the plan runtime
outcome and its unique maintenance controller together. There is no
controller-less extraction path.
Implementations§
Source§impl<R> ProvisionedPlanResources<R>where
R: DeviceRuntime,
impl<R> ProvisionedPlanResources<R>where
R: DeviceRuntime,
pub fn provisioning(&self) -> &StaticProvisioning<R>
pub fn into_parts(self) -> ProvisionedPlanParts<R>
pub fn into_provisioning(self) -> StaticProvisioning<R>
Auto Trait Implementations§
impl<R> !RefUnwindSafe for ProvisionedPlanResources<R>
impl<R> !UnwindSafe for ProvisionedPlanResources<R>
impl<R> Freeze for ProvisionedPlanResources<R>where
StaticProvisioning<R>: Freeze,
impl<R> Send for ProvisionedPlanResources<R>where
StaticProvisioning<R>: Send,
impl<R> Sync for ProvisionedPlanResources<R>where
StaticProvisioning<R>: Sync,
impl<R> Unpin for ProvisionedPlanResources<R>where
StaticProvisioning<R>: Unpin,
impl<R> UnsafeUnpin for ProvisionedPlanResources<R>where
StaticProvisioning<R>: UnsafeUnpin,
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