pub struct UtxoBlock {
pub header: Header,
pub txdata: Vec<UtxoTransaction>,
}
Expand description
A block that has been parsed tracking input amounts and output status
Fields§
§header: Header
The block header
txdata: Vec<UtxoTransaction>
List of transactions contained in the block
Implementations§
Trait Implementations§
impl Eq for UtxoBlock
impl StructuralPartialEq for UtxoBlock
Auto Trait Implementations§
impl Freeze for UtxoBlock
impl RefUnwindSafe for UtxoBlock
impl Send for UtxoBlock
impl Sync for UtxoBlock
impl Unpin for UtxoBlock
impl UnwindSafe for UtxoBlock
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