pub enum ExecutorServiceError {
ParameterError(String),
IOError(Error),
ProcessingError,
ResultReceptionError,
}
Variants§
Trait Implementations§
Source§impl Debug for ExecutorServiceError
impl Debug for ExecutorServiceError
Source§impl Display for ExecutorServiceError
impl Display for ExecutorServiceError
Source§impl Error for ExecutorServiceError
impl Error for ExecutorServiceError
1.30.0 · 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<Error> for ExecutorServiceError
impl From<Error> for ExecutorServiceError
Source§impl From<RecvError> for ExecutorServiceError
impl From<RecvError> for ExecutorServiceError
Auto Trait Implementations§
impl Freeze for ExecutorServiceError
impl !RefUnwindSafe for ExecutorServiceError
impl Send for ExecutorServiceError
impl Sync for ExecutorServiceError
impl Unpin for ExecutorServiceError
impl !UnwindSafe for ExecutorServiceError
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