pub struct SendOperationData {
pub amount: Amount,
pub memo: Option<String>,
pub counter_start: Option<u32>,
pub counter_end: Option<u32>,
pub token: Option<String>,
pub proofs: Option<Proofs>,
}Expand description
Operation-specific data for Send operations
Fields§
§amount: AmountTarget amount to send
memo: Option<String>Memo for the send
counter_start: Option<u32>Derivation counter start
counter_end: Option<u32>Derivation counter end
token: Option<String>Token data (when in Pending/Finalized state)
proofs: Option<Proofs>Proofs being sent
Trait Implementations§
Source§impl Clone for SendOperationData
impl Clone for SendOperationData
Source§fn clone(&self) -> SendOperationData
fn clone(&self) -> SendOperationData
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 SendOperationData
impl Debug for SendOperationData
Source§impl<'de> Deserialize<'de> for SendOperationData
impl<'de> Deserialize<'de> for SendOperationData
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 SendOperationData
impl PartialEq for SendOperationData
Source§impl Serialize for SendOperationData
impl Serialize for SendOperationData
impl Eq for SendOperationData
impl StructuralPartialEq for SendOperationData
Auto Trait Implementations§
impl Freeze for SendOperationData
impl RefUnwindSafe for SendOperationData
impl Send for SendOperationData
impl Sync for SendOperationData
impl Unpin for SendOperationData
impl UnsafeUnpin for SendOperationData
impl UnwindSafe for SendOperationData
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