pub enum AccessError {
UnknownChain,
UnknownTx,
}Expand description
An error when accessing the chain via Access.
Variants§
UnknownChain
The requested chain is unknown.
UnknownTx
The requested transaction doesn’t exist or hasn’t confirmed.
Trait Implementations§
Source§impl Clone for AccessError
impl Clone for AccessError
Source§fn clone(&self) -> AccessError
fn clone(&self) -> AccessError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AccessError
impl RefUnwindSafe for AccessError
impl Send for AccessError
impl Sync for AccessError
impl Unpin for AccessError
impl UnwindSafe for AccessError
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