pub enum OutputStatus {
Spent,
Unspent,
}
Expand description
Status of the TxOut
within the transaction graph.
Variants§
Spent
The output was spent in a later block.
Unspent
The output was never spent in any later block (it is a UTXO).
Trait Implementations§
Source§impl Clone for OutputStatus
impl Clone for OutputStatus
Source§fn clone(&self) -> OutputStatus
fn clone(&self) -> OutputStatus
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 OutputStatus
impl Debug for OutputStatus
Source§impl PartialEq for OutputStatus
impl PartialEq for OutputStatus
impl Copy for OutputStatus
impl Eq for OutputStatus
impl StructuralPartialEq for OutputStatus
Auto Trait Implementations§
impl Freeze for OutputStatus
impl RefUnwindSafe for OutputStatus
impl Send for OutputStatus
impl Sync for OutputStatus
impl Unpin for OutputStatus
impl UnwindSafe for OutputStatus
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