Enum calloop::futures::ExecutorError
source · pub enum ExecutorError {
NewFutureError(ChannelError),
WakeError(PingError),
}Available on crate feature
executor only.Expand description
An error arising from processing events in an async executor event source.
Variants
NewFutureError(ChannelError)
Error while reading new futures added via Scheduler::schedule().
WakeError(PingError)
Error while processing wake events from existing futures.
Trait Implementations
sourceimpl Debug for ExecutorError
impl Debug for ExecutorError
sourceimpl Display for ExecutorError
impl Display for ExecutorError
sourceimpl Error for ExecutorError
impl Error for ExecutorError
1.30.0 · sourcefn 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 · sourcefn 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 ExecutorError
impl Send for ExecutorError
impl Sync for ExecutorError
impl Unpin for ExecutorError
impl !UnwindSafe for ExecutorError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more