pub struct CashConfirmationTransaction {
pub correlation_id: CorrelationId,
}Expand description
Issued by the trust to confirm a pending create request
Fields§
§correlation_id: CorrelationIdThe ID of the create request to mark as fulfilled (and the same ID which was present in the cash transfer)
Implementations§
Source§impl CashConfirmationTransaction
impl CashConfirmationTransaction
pub fn new(correlation_id: CorrelationId) -> CashConfirmationTransaction
Trait Implementations§
Source§impl Clone for CashConfirmationTransaction
impl Clone for CashConfirmationTransaction
Source§fn clone(&self) -> CashConfirmationTransaction
fn clone(&self) -> CashConfirmationTransaction
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 CashConfirmationTransaction
impl Debug for CashConfirmationTransaction
Source§impl<'de> Deserialize<'de> for CashConfirmationTransaction
impl<'de> Deserialize<'de> for CashConfirmationTransaction
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<CashConfirmationTransaction> for LedgerTransaction
impl From<CashConfirmationTransaction> for LedgerTransaction
Source§fn from(original: CashConfirmationTransaction) -> LedgerTransaction
fn from(original: CashConfirmationTransaction) -> LedgerTransaction
Converts to this type from the input type.
impl Eq for CashConfirmationTransaction
impl StructuralPartialEq for CashConfirmationTransaction
Auto Trait Implementations§
impl Freeze for CashConfirmationTransaction
impl RefUnwindSafe for CashConfirmationTransaction
impl Send for CashConfirmationTransaction
impl Sync for CashConfirmationTransaction
impl Unpin for CashConfirmationTransaction
impl UnwindSafe for CashConfirmationTransaction
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