pub enum ContainerError<E> {
Io(Error),
CommandFailed(String),
UnexpectedState(String),
CallbackFailed(E),
}Variants§
Trait Implementations§
Source§impl<E: Debug> Debug for ContainerError<E>
impl<E: Debug> Debug for ContainerError<E>
Source§impl<E> Display for ContainerError<E>where
E: Error,
impl<E> Display for ContainerError<E>where
E: Error,
Auto Trait Implementations§
impl<E> Freeze for ContainerError<E>where
E: Freeze,
impl<E> !RefUnwindSafe for ContainerError<E>
impl<E> Send for ContainerError<E>where
E: Send,
impl<E> Sync for ContainerError<E>where
E: Sync,
impl<E> Unpin for ContainerError<E>where
E: Unpin,
impl<E> !UnwindSafe for ContainerError<E>
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