pub struct SignEvmTransactionResponse {
pub signed_transaction: String,
}
Expand description
SignEvmTransactionResponse
JSON schema
{
"type": "object",
"required": [
"signedTransaction"
],
"properties": {
"signedTransaction": {
"description": "The RLP-encoded signed transaction, as a 0x-prefixed hex string.",
"examples": [
"0x1b0c9cf8cd4554c6c6d9e7311e88f1be075d7f25b418a044f4bf2c0a42a93e212ad0a8b54de9e0b5f7e3812de3f2c6cc79aa8c3e1c02e7ad14b4a8f42012c2c01b"
],
"type": "string"
}
}
}
Fields§
§signed_transaction: String
The RLP-encoded signed transaction, as a 0x-prefixed hex string.
Implementations§
Source§impl SignEvmTransactionResponse
impl SignEvmTransactionResponse
pub fn builder() -> SignEvmTransactionResponse
Trait Implementations§
Source§impl Clone for SignEvmTransactionResponse
impl Clone for SignEvmTransactionResponse
Source§fn clone(&self) -> SignEvmTransactionResponse
fn clone(&self) -> SignEvmTransactionResponse
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 SignEvmTransactionResponse
impl Debug for SignEvmTransactionResponse
Source§impl<'de> Deserialize<'de> for SignEvmTransactionResponse
impl<'de> Deserialize<'de> for SignEvmTransactionResponse
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<&SignEvmTransactionResponse> for SignEvmTransactionResponse
impl From<&SignEvmTransactionResponse> for SignEvmTransactionResponse
Source§fn from(value: &SignEvmTransactionResponse) -> Self
fn from(value: &SignEvmTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl From<SignEvmTransactionResponse> for SignEvmTransactionResponse
impl From<SignEvmTransactionResponse> for SignEvmTransactionResponse
Source§fn from(value: SignEvmTransactionResponse) -> Self
fn from(value: SignEvmTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<SignEvmTransactionResponse> for SignEvmTransactionResponse
impl TryFrom<SignEvmTransactionResponse> for SignEvmTransactionResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: SignEvmTransactionResponse) -> Result<Self, ConversionError>
fn try_from(value: SignEvmTransactionResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for SignEvmTransactionResponse
impl RefUnwindSafe for SignEvmTransactionResponse
impl Send for SignEvmTransactionResponse
impl Sync for SignEvmTransactionResponse
impl Unpin for SignEvmTransactionResponse
impl UnwindSafe for SignEvmTransactionResponse
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