pub struct VtxoTxIterItem {
pub tx: Transaction,
pub is_exit: bool,
}Expand description
Type of the items yielded by VtxoTxIter, the iterator returned by Vtxo::transactions.
Fields§
§tx: TransactionThe actual transaction.
is_exit: boolWhether this tx is an exit tx, meaning that it contains exit outputs.
Trait Implementations§
Source§impl Clone for VtxoTxIterItem
impl Clone for VtxoTxIterItem
Source§fn clone(&self) -> VtxoTxIterItem
fn clone(&self) -> VtxoTxIterItem
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 VtxoTxIterItem
impl Debug for VtxoTxIterItem
Source§impl Ord for VtxoTxIterItem
impl Ord for VtxoTxIterItem
Source§fn cmp(&self, other: &VtxoTxIterItem) -> Ordering
fn cmp(&self, other: &VtxoTxIterItem) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VtxoTxIterItem
impl PartialEq for VtxoTxIterItem
Source§impl PartialOrd for VtxoTxIterItem
impl PartialOrd for VtxoTxIterItem
impl Eq for VtxoTxIterItem
impl StructuralPartialEq for VtxoTxIterItem
Auto Trait Implementations§
impl Freeze for VtxoTxIterItem
impl RefUnwindSafe for VtxoTxIterItem
impl Send for VtxoTxIterItem
impl Sync for VtxoTxIterItem
impl Unpin for VtxoTxIterItem
impl UnwindSafe for VtxoTxIterItem
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