pub enum FleetComponentProvisioningOperation {
FreshInstall,
ScaleOut {
deployment: ComponentGroupDeploymentId,
previous_placements: u32,
requested_placements: u32,
},
}Expand description
Fresh-install or monotonic scale-out scope covered by one plan.
Variants§
Trait Implementations§
Source§impl Clone for FleetComponentProvisioningOperation
impl Clone for FleetComponentProvisioningOperation
Source§fn clone(&self) -> FleetComponentProvisioningOperation
fn clone(&self) -> FleetComponentProvisioningOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for FleetComponentProvisioningOperation
impl<'de> Deserialize<'de> for FleetComponentProvisioningOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FleetComponentProvisioningOperation
impl StructuralPartialEq for FleetComponentProvisioningOperation
Auto Trait Implementations§
impl Freeze for FleetComponentProvisioningOperation
impl RefUnwindSafe for FleetComponentProvisioningOperation
impl Send for FleetComponentProvisioningOperation
impl Sync for FleetComponentProvisioningOperation
impl Unpin for FleetComponentProvisioningOperation
impl UnsafeUnpin for FleetComponentProvisioningOperation
impl UnwindSafe for FleetComponentProvisioningOperation
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