pub enum IntoDeploymentError {
MissingContainerID,
LocalDeploymentLabels(GetLocalDeploymentLabelsError),
MongoDBPortBinding(GetMongoDBPortBindingError),
State(GetStateError),
}Variants§
MissingContainerID
LocalDeploymentLabels(GetLocalDeploymentLabelsError)
MongoDBPortBinding(GetMongoDBPortBindingError)
State(GetStateError)
Trait Implementations§
Source§impl Debug for IntoDeploymentError
impl Debug for IntoDeploymentError
Source§impl Display for IntoDeploymentError
impl Display for IntoDeploymentError
Source§impl Error for IntoDeploymentError
impl Error for IntoDeploymentError
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<GetLocalDeploymentLabelsError> for IntoDeploymentError
impl From<GetLocalDeploymentLabelsError> for IntoDeploymentError
Source§fn from(source: GetLocalDeploymentLabelsError) -> Self
fn from(source: GetLocalDeploymentLabelsError) -> Self
Converts to this type from the input type.
Source§impl From<GetMongoDBPortBindingError> for IntoDeploymentError
impl From<GetMongoDBPortBindingError> for IntoDeploymentError
Source§fn from(source: GetMongoDBPortBindingError) -> Self
fn from(source: GetMongoDBPortBindingError) -> Self
Converts to this type from the input type.
Source§impl From<GetStateError> for IntoDeploymentError
impl From<GetStateError> for IntoDeploymentError
Source§fn from(source: GetStateError) -> Self
fn from(source: GetStateError) -> 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.
Source§impl PartialEq for IntoDeploymentError
impl PartialEq for IntoDeploymentError
impl StructuralPartialEq for IntoDeploymentError
Auto Trait Implementations§
impl Freeze for IntoDeploymentError
impl RefUnwindSafe for IntoDeploymentError
impl Send for IntoDeploymentError
impl Sync for IntoDeploymentError
impl Unpin for IntoDeploymentError
impl UnsafeUnpin for IntoDeploymentError
impl UnwindSafe for IntoDeploymentError
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