pub struct SimulateRawTransactionResponse {
pub balance_change: Amount,
}Expand description
Response for the SimulateRawTransaction RPC method
Fields§
§balance_change: AmountThe wallet balance change (negative means decrease).
Trait Implementations§
Source§impl Clone for SimulateRawTransactionResponse
impl Clone for SimulateRawTransactionResponse
Source§fn clone(&self) -> SimulateRawTransactionResponse
fn clone(&self) -> SimulateRawTransactionResponse
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<'de> Deserialize<'de> for SimulateRawTransactionResponse
impl<'de> Deserialize<'de> for SimulateRawTransactionResponse
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 PartialEq for SimulateRawTransactionResponse
impl PartialEq for SimulateRawTransactionResponse
Source§fn eq(&self, other: &SimulateRawTransactionResponse) -> bool
fn eq(&self, other: &SimulateRawTransactionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SimulateRawTransactionResponse
Auto Trait Implementations§
impl Freeze for SimulateRawTransactionResponse
impl RefUnwindSafe for SimulateRawTransactionResponse
impl Send for SimulateRawTransactionResponse
impl Sync for SimulateRawTransactionResponse
impl Unpin for SimulateRawTransactionResponse
impl UnwindSafe for SimulateRawTransactionResponse
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