pub struct TransferOperationExecutionOutput {
pub amount: AssetAmount,
pub fee: AssetAmount,
}
Fields§
§amount: AssetAmount
§fee: AssetAmount
Implementations§
Source§impl TransferOperationExecutionOutput
impl TransferOperationExecutionOutput
pub fn new( amount: AssetAmount, fee: AssetAmount, ) -> TransferOperationExecutionOutput
Trait Implementations§
Source§impl Clone for TransferOperationExecutionOutput
impl Clone for TransferOperationExecutionOutput
Source§fn clone(&self) -> TransferOperationExecutionOutput
fn clone(&self) -> TransferOperationExecutionOutput
Returns a copy 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 Default for TransferOperationExecutionOutput
impl Default for TransferOperationExecutionOutput
Source§fn default() -> TransferOperationExecutionOutput
fn default() -> TransferOperationExecutionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransferOperationExecutionOutput
impl<'de> Deserialize<'de> for TransferOperationExecutionOutput
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 TransferOperationExecutionOutput
impl PartialEq for TransferOperationExecutionOutput
Source§fn eq(&self, other: &TransferOperationExecutionOutput) -> bool
fn eq(&self, other: &TransferOperationExecutionOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TransferOperationExecutionOutput
Auto Trait Implementations§
impl Freeze for TransferOperationExecutionOutput
impl RefUnwindSafe for TransferOperationExecutionOutput
impl Send for TransferOperationExecutionOutput
impl Sync for TransferOperationExecutionOutput
impl Unpin for TransferOperationExecutionOutput
impl UnwindSafe for TransferOperationExecutionOutput
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