pub struct SendEvmTransactionResponse {
pub transaction_hash: String,
}
Expand description
SendEvmTransactionResponse
JSON schema
{
"type": "object",
"required": [
"transactionHash"
],
"properties": {
"transactionHash": {
"description": "The hash of the transaction, as a 0x-prefixed hex string.",
"examples": [
"0xf8f98fb6726fc936f24b2007df5cb20e2b8444ff3dfaa2a929335f432a9be2e7"
],
"type": "string"
}
}
}
Fields§
§transaction_hash: String
The hash of the transaction, as a 0x-prefixed hex string.
Implementations§
Source§impl SendEvmTransactionResponse
impl SendEvmTransactionResponse
pub fn builder() -> SendEvmTransactionResponse
Trait Implementations§
Source§impl Clone for SendEvmTransactionResponse
impl Clone for SendEvmTransactionResponse
Source§fn clone(&self) -> SendEvmTransactionResponse
fn clone(&self) -> SendEvmTransactionResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SendEvmTransactionResponse
impl Debug for SendEvmTransactionResponse
Source§impl<'de> Deserialize<'de> for SendEvmTransactionResponse
impl<'de> Deserialize<'de> for SendEvmTransactionResponse
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
Source§impl From<&SendEvmTransactionResponse> for SendEvmTransactionResponse
impl From<&SendEvmTransactionResponse> for SendEvmTransactionResponse
Source§fn from(value: &SendEvmTransactionResponse) -> Self
fn from(value: &SendEvmTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl From<SendEvmTransactionResponse> for SendEvmTransactionResponse
impl From<SendEvmTransactionResponse> for SendEvmTransactionResponse
Source§fn from(value: SendEvmTransactionResponse) -> Self
fn from(value: SendEvmTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<SendEvmTransactionResponse> for SendEvmTransactionResponse
impl TryFrom<SendEvmTransactionResponse> for SendEvmTransactionResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: SendEvmTransactionResponse) -> Result<Self, ConversionError>
fn try_from(value: SendEvmTransactionResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for SendEvmTransactionResponse
impl RefUnwindSafe for SendEvmTransactionResponse
impl Send for SendEvmTransactionResponse
impl Sync for SendEvmTransactionResponse
impl Unpin for SendEvmTransactionResponse
impl UnwindSafe for SendEvmTransactionResponse
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