pub struct EthereumSendCallsCall {
pub data: Option<Hex>,
pub to: String,
pub value: Option<Quantity>,
}Expand description
A single call within a batched wallet_sendCalls request.
JSON schema
{
"title": "EthereumSendCallsCall",
"description": "A single call within a batched wallet_sendCalls
request.",
"type": "object",
"required": [
"to"
],
"properties": {
"data": {
"$ref": "#/components/schemas/Hex"
},
"to": {
"type": "string"
},
"value": {
"$ref": "#/components/schemas/Quantity"
}
},
"x-stainless-model": "wallets.ethereum_send_calls_call"
}Fields§
§data: Option<Hex>§to: String§value: Option<Quantity>Trait Implementations§
Source§impl Clone for EthereumSendCallsCall
impl Clone for EthereumSendCallsCall
Source§fn clone(&self) -> EthereumSendCallsCall
fn clone(&self) -> EthereumSendCallsCall
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 moreSource§impl Debug for EthereumSendCallsCall
impl Debug for EthereumSendCallsCall
Source§impl<'de> Deserialize<'de> for EthereumSendCallsCall
impl<'de> Deserialize<'de> for EthereumSendCallsCall
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<&EthereumSendCallsCall> for EthereumSendCallsCall
impl From<&EthereumSendCallsCall> for EthereumSendCallsCall
Source§fn from(value: &EthereumSendCallsCall) -> Self
fn from(value: &EthereumSendCallsCall) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSendCallsCall
impl RefUnwindSafe for EthereumSendCallsCall
impl Send for EthereumSendCallsCall
impl Sync for EthereumSendCallsCall
impl Unpin for EthereumSendCallsCall
impl UnsafeUnpin for EthereumSendCallsCall
impl UnwindSafe for EthereumSendCallsCall
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