pub enum PauseDeploymentError {
ContainerPause(String),
GetDeployment(GetDeploymentError),
}Variants§
ContainerPause(String)
GetDeployment(GetDeploymentError)
Trait Implementations§
Source§impl Debug for PauseDeploymentError
impl Debug for PauseDeploymentError
Source§impl Display for PauseDeploymentError
impl Display for PauseDeploymentError
Source§impl Error for PauseDeploymentError
impl Error for PauseDeploymentError
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<GetDeploymentError> for PauseDeploymentError
impl From<GetDeploymentError> for PauseDeploymentError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PauseDeploymentError
impl !RefUnwindSafe for PauseDeploymentError
impl Send for PauseDeploymentError
impl Sync for PauseDeploymentError
impl Unpin for PauseDeploymentError
impl UnsafeUnpin for PauseDeploymentError
impl !UnwindSafe for PauseDeploymentError
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