pub enum PendingBundleError {
BundleNotIncluded,
ProviderError(ProviderError),
}Expand description
Errors for pending bundles.
Variants§
BundleNotIncluded
The bundle was not included in the target block.
ProviderError(ProviderError)
An error occured while interacting with the RPC endpoint.
Trait Implementations§
source§impl Debug for PendingBundleError
impl Debug for PendingBundleError
source§impl Display for PendingBundleError
impl Display for PendingBundleError
source§impl Error for PendingBundleError
impl Error for PendingBundleError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for PendingBundleError
impl Send for PendingBundleError
impl Sync for PendingBundleError
impl Unpin for PendingBundleError
impl !UnwindSafe for PendingBundleError
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