pub enum TxsJobStage {
Txs(BTreeSet<Txid>),
Prevouts(BTreeSet<OutPoint>),
}Variants§
Implementations§
Source§impl TxsJobStage
impl TxsJobStage
pub fn from_missing_txs(txids: impl IntoIterator<Item = Txid>) -> Option<Self>
pub fn from_missing_prev_txs( outpoints: impl IntoIterator<Item = OutPoint>, ) -> Option<Self>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TxsJobStage
impl RefUnwindSafe for TxsJobStage
impl Send for TxsJobStage
impl Sync for TxsJobStage
impl Unpin for TxsJobStage
impl UnwindSafe for TxsJobStage
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