pub enum SendTransactionApiError {
Status401(SendTransactionResponse401),
}Expand description
Typed error responses for sendTransaction. One variant per declared non-2xx response.
Variants§
Status401(SendTransactionResponse401)
Trait Implementations§
Source§impl Clone for SendTransactionApiError
impl Clone for SendTransactionApiError
Source§fn clone(&self) -> SendTransactionApiError
fn clone(&self) -> SendTransactionApiError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SendTransactionApiError
impl RefUnwindSafe for SendTransactionApiError
impl Send for SendTransactionApiError
impl Sync for SendTransactionApiError
impl Unpin for SendTransactionApiError
impl UnsafeUnpin for SendTransactionApiError
impl UnwindSafe for SendTransactionApiError
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