pub enum ReconstructResult {
Success(Block),
NeedTransactions(GetBlockTransactions),
}Expand description
Result of attempting to reconstruct a block from a compact block.
Variants§
Success(Block)
Successfully reconstructed the full block.
NeedTransactions(GetBlockTransactions)
Some transactions are missing — need to request them.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReconstructResult
impl RefUnwindSafe for ReconstructResult
impl Send for ReconstructResult
impl Sync for ReconstructResult
impl Unpin for ReconstructResult
impl UnsafeUnpin for ReconstructResult
impl UnwindSafe for ReconstructResult
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