pub enum GetDeploymentError {
ContainerInspect(Error),
IntoDeployment(IntoDeploymentError),
}Variants§
ContainerInspect(Error)
IntoDeployment(IntoDeploymentError)
Trait Implementations§
Source§impl Debug for GetDeploymentError
impl Debug for GetDeploymentError
Source§impl Display for GetDeploymentError
impl Display for GetDeploymentError
Source§impl Error for GetDeploymentError
impl Error for GetDeploymentError
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 GetDeploymentError
impl From<Error> for GetDeploymentError
Source§impl From<GetDeploymentError> for DeleteDeploymentError
impl From<GetDeploymentError> for DeleteDeploymentError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
Source§impl From<GetDeploymentError> for GetConnectionStringError
impl From<GetDeploymentError> for GetConnectionStringError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
Source§impl From<GetDeploymentError> for GetDeploymentIdError
impl From<GetDeploymentError> for GetDeploymentIdError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
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.
Source§impl From<GetDeploymentError> for StartDeploymentError
impl From<GetDeploymentError> for StartDeploymentError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
Source§impl From<GetDeploymentError> for StopDeploymentError
impl From<GetDeploymentError> for StopDeploymentError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
Source§impl From<GetDeploymentError> for UnpauseDeploymentError
impl From<GetDeploymentError> for UnpauseDeploymentError
Source§fn from(source: GetDeploymentError) -> Self
fn from(source: GetDeploymentError) -> Self
Converts to this type from the input type.
Source§impl From<IntoDeploymentError> for GetDeploymentError
impl From<IntoDeploymentError> for GetDeploymentError
Source§fn from(source: IntoDeploymentError) -> Self
fn from(source: IntoDeploymentError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetDeploymentError
impl !RefUnwindSafe for GetDeploymentError
impl Send for GetDeploymentError
impl Sync for GetDeploymentError
impl Unpin for GetDeploymentError
impl UnsafeUnpin for GetDeploymentError
impl !UnwindSafe for GetDeploymentError
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