Enum ethcore::miner::PendingSet
source · [−]pub enum PendingSet {
AlwaysQueue,
AlwaysSealing,
SealingOrElseQueue,
}
Expand description
Different possible definitions for pending transaction set.
Variants
AlwaysQueue
Always just the transactions in the queue. These have had only cheap checks.
AlwaysSealing
Always just the transactions in the sealing block. These have had full checks but may be empty if the node is not actively mining or has no force_sealing enabled.
SealingOrElseQueue
Takes from sealing if mining, from queue otherwise.
Trait Implementations
sourceimpl Debug for PendingSet
impl Debug for PendingSet
sourceimpl PartialEq<PendingSet> for PendingSet
impl PartialEq<PendingSet> for PendingSet
impl StructuralPartialEq for PendingSet
Auto Trait Implementations
impl RefUnwindSafe for PendingSet
impl Send for PendingSet
impl Sync for PendingSet
impl Unpin for PendingSet
impl UnwindSafe for PendingSet
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more