pub enum GetStateError {
MissingState,
FromContainerStateStatusEnum(FromContainerStateStatusEnumError),
}Variants§
MissingState
FromContainerStateStatusEnum(FromContainerStateStatusEnumError)
Trait Implementations§
Source§impl Debug for GetStateError
impl Debug for GetStateError
Source§impl Display for GetStateError
impl Display for GetStateError
Source§impl Error for GetStateError
impl Error for GetStateError
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<FromContainerStateStatusEnumError> for GetStateError
impl From<FromContainerStateStatusEnumError> for GetStateError
Source§fn from(source: FromContainerStateStatusEnumError) -> Self
fn from(source: FromContainerStateStatusEnumError) -> 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 PartialEq for GetStateError
impl PartialEq for GetStateError
impl StructuralPartialEq for GetStateError
Auto Trait Implementations§
impl Freeze for GetStateError
impl RefUnwindSafe for GetStateError
impl Send for GetStateError
impl Sync for GetStateError
impl Unpin for GetStateError
impl UnsafeUnpin for GetStateError
impl UnwindSafe for GetStateError
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