pub enum ExecutorCreationError {
InnerError(Box<dyn Error + Send + Sync>),
FieldRequiredError(String),
InvalidValue(String),
}Variants§
Trait Implementations§
Source§impl Debug for ExecutorCreationError
impl Debug for ExecutorCreationError
Source§impl Display for ExecutorCreationError
impl Display for ExecutorCreationError
Source§impl Error for ExecutorCreationError
impl Error for ExecutorCreationError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for ExecutorCreationError
impl !UnwindSafe for ExecutorCreationError
impl Freeze for ExecutorCreationError
impl Send for ExecutorCreationError
impl Sync for ExecutorCreationError
impl Unpin for ExecutorCreationError
impl UnsafeUnpin for ExecutorCreationError
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