pub enum GetDeploymentIdError {
GetDeployment(GetDeploymentError),
GetMongodbUsername(RunCommandInContainerError),
GetMongodbPassword(RunCommandInContainerError),
RunMongoshCommand(RunCommandInContainerError),
DeploymentIdEmpty,
}Variants§
GetDeployment(GetDeploymentError)
GetMongodbUsername(RunCommandInContainerError)
GetMongodbPassword(RunCommandInContainerError)
RunMongoshCommand(RunCommandInContainerError)
DeploymentIdEmpty
Trait Implementations§
Source§impl Debug for GetDeploymentIdError
impl Debug for GetDeploymentIdError
Source§impl Display for GetDeploymentIdError
impl Display for GetDeploymentIdError
Source§impl Error for GetDeploymentIdError
impl Error for GetDeploymentIdError
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 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.
Auto Trait Implementations§
impl Freeze for GetDeploymentIdError
impl !RefUnwindSafe for GetDeploymentIdError
impl Send for GetDeploymentIdError
impl Sync for GetDeploymentIdError
impl Unpin for GetDeploymentIdError
impl UnsafeUnpin for GetDeploymentIdError
impl !UnwindSafe for GetDeploymentIdError
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