pub enum DeployPhase {
Plan,
Preflight,
OciBuild,
OciPush,
K8sApply,
CfDoctor,
CfBuild,
CfDeploy,
OpenNext,
Verify,
Unknown,
}Expand description
Coarse phase of a deploy attempt (for history + metrics).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DeployPhase
impl Clone for DeployPhase
Source§fn clone(&self) -> DeployPhase
fn clone(&self) -> DeployPhase
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 moreimpl Copy for DeployPhase
Source§impl Debug for DeployPhase
impl Debug for DeployPhase
Source§impl<'de> Deserialize<'de> for DeployPhase
impl<'de> Deserialize<'de> for DeployPhase
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 DeployPhase
Source§impl PartialEq for DeployPhase
impl PartialEq for DeployPhase
Source§impl Serialize for DeployPhase
impl Serialize for DeployPhase
impl StructuralPartialEq for DeployPhase
Auto Trait Implementations§
impl Freeze for DeployPhase
impl RefUnwindSafe for DeployPhase
impl Send for DeployPhase
impl Sync for DeployPhase
impl Unpin for DeployPhase
impl UnsafeUnpin for DeployPhase
impl UnwindSafe for DeployPhase
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