pub enum DeployFailureClass {
Show 18 variants
Success,
OciBuildBasePull,
OciMissingArtifact,
OciBuildFailed,
OciRegistryAuth,
OciPushDenied,
K8sApplyFailed,
CfWorkerNotFound,
CfContractIncomplete,
CfAuthToken,
CfUnchangedContainerImage,
CfMissingEntryPoint,
OpenNextWslFailed,
OpenNextBuildFailed,
ConfigParse,
PreflightFailed,
SparseFailure,
Unknown,
}Expand description
Stable failure class for deploy attempts.
Variants§
Success
OciBuildBasePull
OciMissingArtifact
OciBuildFailed
OciRegistryAuth
OciPushDenied
K8sApplyFailed
CfWorkerNotFound
CfContractIncomplete
CfAuthToken
CfUnchangedContainerImage
CfMissingEntryPoint
OpenNextWslFailed
OpenNextBuildFailed
ConfigParse
PreflightFailed
SparseFailure
Unknown
Implementations§
Trait Implementations§
Source§impl Clone for DeployFailureClass
impl Clone for DeployFailureClass
Source§fn clone(&self) -> DeployFailureClass
fn clone(&self) -> DeployFailureClass
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 DeployFailureClass
Source§impl Debug for DeployFailureClass
impl Debug for DeployFailureClass
Source§impl<'de> Deserialize<'de> for DeployFailureClass
impl<'de> Deserialize<'de> for DeployFailureClass
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 DeployFailureClass
Source§impl PartialEq for DeployFailureClass
impl PartialEq for DeployFailureClass
Source§impl Serialize for DeployFailureClass
impl Serialize for DeployFailureClass
impl StructuralPartialEq for DeployFailureClass
Auto Trait Implementations§
impl Freeze for DeployFailureClass
impl RefUnwindSafe for DeployFailureClass
impl Send for DeployFailureClass
impl Sync for DeployFailureClass
impl Unpin for DeployFailureClass
impl UnsafeUnpin for DeployFailureClass
impl UnwindSafe for DeployFailureClass
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