pub enum WatchDeploymentError {
ContainerInspect(Error),
Timeout {
deployment_name: String,
},
UnhealthyDeployment {
deployment_name: String,
status: HealthStatusEnum,
},
}Variants§
Trait Implementations§
Source§impl Debug for WatchDeploymentError
impl Debug for WatchDeploymentError
Source§impl Display for WatchDeploymentError
impl Display for WatchDeploymentError
Source§impl Error for WatchDeploymentError
impl Error for WatchDeploymentError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for WatchDeploymentError
impl From<Error> for WatchDeploymentError
Source§impl From<WatchDeploymentError> for CreateDeploymentError
impl From<WatchDeploymentError> for CreateDeploymentError
Source§fn from(source: WatchDeploymentError) -> Self
fn from(source: WatchDeploymentError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WatchDeploymentError
impl !RefUnwindSafe for WatchDeploymentError
impl Send for WatchDeploymentError
impl Sync for WatchDeploymentError
impl Unpin for WatchDeploymentError
impl UnsafeUnpin for WatchDeploymentError
impl !UnwindSafe for WatchDeploymentError
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