pub struct SendTransactionResponseError {
pub code: u32,
pub name: String,
pub what: String,
pub stack: Option<Vec<SendTransactionResponseExceptionStack>>,
pub details: Vec<SendTransactionResponseErrorDetails>,
}
Fields§
§code: u32
§name: String
§what: String
§stack: Option<Vec<SendTransactionResponseExceptionStack>>
§details: Vec<SendTransactionResponseErrorDetails>
Implementations§
Source§impl SendTransactionResponseError
impl SendTransactionResponseError
pub fn print_error(&self)
pub fn get_stack(&self) -> String
Trait Implementations§
Source§impl Debug for SendTransactionResponseError
impl Debug for SendTransactionResponseError
Source§impl<'de> Deserialize<'de> for SendTransactionResponseError
impl<'de> Deserialize<'de> for SendTransactionResponseError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SendTransactionResponseError
impl RefUnwindSafe for SendTransactionResponseError
impl Send for SendTransactionResponseError
impl Sync for SendTransactionResponseError
impl Unpin for SendTransactionResponseError
impl UnwindSafe for SendTransactionResponseError
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