pub struct TempoCall {
pub data: Option<Hex>,
pub to: String,
pub value: Option<Quantity>,
}Expand description
A single call within a Tempo batched transaction.
JSON schema
{
"title": "TempoCall",
"description": "A single call within a Tempo batched transaction.",
"type": "object",
"required": [
"to"
],
"properties": {
"data": {
"$ref": "#/components/schemas/Hex"
},
"to": {
"type": "string"
},
"value": {
"$ref": "#/components/schemas/Quantity"
}
},
"x-stainless-model": "wallets.tempo_call"
}Fields§
§data: Option<Hex>§to: String§value: Option<Quantity>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TempoCall
impl<'de> Deserialize<'de> for TempoCall
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 TempoCall
impl RefUnwindSafe for TempoCall
impl Send for TempoCall
impl Sync for TempoCall
impl Unpin for TempoCall
impl UnsafeUnpin for TempoCall
impl UnwindSafe for TempoCall
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