pub enum ExecutorServiceError {
ProcessingError,
ResultReceptionError,
}Variants§
Trait Implementations§
source§impl Clone for ExecutorServiceError
impl Clone for ExecutorServiceError
source§fn clone(&self) -> ExecutorServiceError
fn clone(&self) -> ExecutorServiceError
Returns a copy of the value. Read more
1.0.0 · 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 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)>
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<RecvError> for ExecutorServiceError
impl From<RecvError> for ExecutorServiceError
source§impl<T> From<SendError<T>> for ExecutorServiceError
impl<T> From<SendError<T>> for ExecutorServiceError
source§impl PartialEq<ExecutorServiceError> for ExecutorServiceError
impl PartialEq<ExecutorServiceError> for ExecutorServiceError
source§fn eq(&self, other: &ExecutorServiceError) -> bool
fn eq(&self, other: &ExecutorServiceError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.