pub struct ExecSyncError(pub usize, pub OpSyncError);Expand description
Synchronous execution failed at the operation at the given index.
Tuple Fields§
§0: usize§1: OpSyncErrorTrait Implementations§
Source§impl Debug for ExecSyncError
impl Debug for ExecSyncError
Source§impl Display for ExecSyncError
impl Display for ExecSyncError
Source§impl Error for ExecSyncError
impl Error for ExecSyncError
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<ExecSyncError> for EvalSyncError
impl From<ExecSyncError> for EvalSyncError
Source§fn from(source: ExecSyncError) -> Self
fn from(source: ExecSyncError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExecSyncError
impl !RefUnwindSafe for ExecSyncError
impl Send for ExecSyncError
impl Sync for ExecSyncError
impl Unpin for ExecSyncError
impl !UnwindSafe for ExecSyncError
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