pub enum TransactionFlow {
Sent(VinIndex, SpentFromTransaction, SpentInTransaction),
Recieved(VoutIndex, Transaction),
}
Variants§
Sent(VinIndex, SpentFromTransaction, SpentInTransaction)
Recieved(VoutIndex, Transaction)
Trait Implementations§
Source§impl Clone for TransactionFlow
impl Clone for TransactionFlow
Source§fn clone(&self) -> TransactionFlow
fn clone(&self) -> TransactionFlow
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 moreAuto Trait Implementations§
impl Freeze for TransactionFlow
impl RefUnwindSafe for TransactionFlow
impl Send for TransactionFlow
impl Sync for TransactionFlow
impl Unpin for TransactionFlow
impl UnwindSafe for TransactionFlow
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