pub struct OutPoint {
pub txid: [u8; 32],
pub vout: u32,
}Expand description
A transaction outpoint (reference to a previous output).
Fields§
§txid: [u8; 32]Previous transaction ID (32 bytes, internal byte order).
vout: u32Output index within that transaction.
Trait Implementations§
impl Eq for OutPoint
impl StructuralPartialEq for OutPoint
Auto Trait Implementations§
impl Freeze for OutPoint
impl RefUnwindSafe for OutPoint
impl Send for OutPoint
impl Sync for OutPoint
impl Unpin for OutPoint
impl UnsafeUnpin for OutPoint
impl UnwindSafe for OutPoint
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