pub struct SendClaimsTransaction {
pub core_transaction: CoreSendClaimsTransaction,
pub pi: Proof,
}Expand description
A send claims transaction representing the transfer of value from one registered member to another
Fields§
§core_transaction: CoreSendClaimsTransactionContains all the details of a Transaction other than the proof with signature.
pi: Proofpi is the proof with signature
Trait Implementations§
Source§impl Clone for SendClaimsTransaction
impl Clone for SendClaimsTransaction
Source§fn clone(&self) -> SendClaimsTransaction
fn clone(&self) -> SendClaimsTransaction
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 SendClaimsTransaction
impl Debug for SendClaimsTransaction
Source§impl<'de> Deserialize<'de> for SendClaimsTransaction
impl<'de> Deserialize<'de> for SendClaimsTransaction
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<SendClaimsTransaction> for LedgerTransaction
impl From<SendClaimsTransaction> for LedgerTransaction
Source§fn from(original: SendClaimsTransaction) -> LedgerTransaction
fn from(original: SendClaimsTransaction) -> LedgerTransaction
Converts to this type from the input type.
Source§impl PartialEq for SendClaimsTransaction
impl PartialEq for SendClaimsTransaction
Source§impl Serialize for SendClaimsTransaction
impl Serialize for SendClaimsTransaction
impl Eq for SendClaimsTransaction
impl StructuralPartialEq for SendClaimsTransaction
Auto Trait Implementations§
impl Freeze for SendClaimsTransaction
impl RefUnwindSafe for SendClaimsTransaction
impl Send for SendClaimsTransaction
impl Sync for SendClaimsTransaction
impl Unpin for SendClaimsTransaction
impl UnwindSafe for SendClaimsTransaction
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