pub enum DeployAction {
Switch,
Boot,
Test,
DryActivate,
Build,
}Expand description
Deployment action to perform on targets.
Variants§
Switch
Activate and set as boot default.
Boot
Set as boot default without activating.
Test
Activate without setting as boot default.
DryActivate
Check what would change without activating.
Build
Only build, don’t deploy.
Trait Implementations§
Source§impl Clone for DeployAction
impl Clone for DeployAction
Source§fn clone(&self) -> DeployAction
fn clone(&self) -> DeployAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeployAction
impl Debug for DeployAction
Source§impl<'de> Deserialize<'de> for DeployAction
impl<'de> Deserialize<'de> for DeployAction
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
Source§impl Display for DeployAction
impl Display for DeployAction
Source§impl FromStr for DeployAction
impl FromStr for DeployAction
Source§impl PartialEq for DeployAction
impl PartialEq for DeployAction
Source§impl Serialize for DeployAction
impl Serialize for DeployAction
impl Copy for DeployAction
impl Eq for DeployAction
impl StructuralPartialEq for DeployAction
Auto Trait Implementations§
impl Freeze for DeployAction
impl RefUnwindSafe for DeployAction
impl Send for DeployAction
impl Sync for DeployAction
impl Unpin for DeployAction
impl UnsafeUnpin for DeployAction
impl UnwindSafe for DeployAction
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