pub struct SortableInput {
pub index: usize,
pub txid: String,
pub vout: u32,
}Expand description
A composed input (for sorting purposes).
Fields§
§index: usizeOriginal index in the input array
txid: StringTransaction ID (hex)
vout: u32Output index
Trait Implementations§
Source§impl Clone for SortableInput
impl Clone for SortableInput
Source§fn clone(&self) -> SortableInput
fn clone(&self) -> SortableInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SortableInput
impl RefUnwindSafe for SortableInput
impl Send for SortableInput
impl Sync for SortableInput
impl Unpin for SortableInput
impl UnsafeUnpin for SortableInput
impl UnwindSafe for SortableInput
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