pub enum ContainerError {
InstanceNotFound(String),
InvalidState {
current: LifecycleState,
operation: String,
},
Cif(CifError),
}Expand description
Container-Fehler.
Variants§
InstanceNotFound(String)
Component-Instance unbekannt.
InvalidState
Operation passt nicht zum aktuellen Lifecycle-State.
Cif(CifError)
Cif-Fehler aus dem Executor.
Trait Implementations§
Source§impl Clone for ContainerError
impl Clone for ContainerError
Source§fn clone(&self) -> ContainerError
fn clone(&self) -> ContainerError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContainerError
impl Debug for ContainerError
Source§impl From<CifError> for ContainerError
impl From<CifError> for ContainerError
Source§impl PartialEq for ContainerError
impl PartialEq for ContainerError
Source§fn eq(&self, other: &ContainerError) -> bool
fn eq(&self, other: &ContainerError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ContainerError
impl StructuralPartialEq for ContainerError
Auto Trait Implementations§
impl Freeze for ContainerError
impl RefUnwindSafe for ContainerError
impl Send for ContainerError
impl Sync for ContainerError
impl Unpin for ContainerError
impl UnsafeUnpin for ContainerError
impl UnwindSafe for ContainerError
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