pub enum ConfirmationTarget {
Background,
Normal,
HighPriority,
}Expand description
An enum that represents the speed at which we want a transaction to confirm used for feerate estimation.
Variants§
Background
We are happy with this transaction confirming slowly when feerate drops some.
Normal
We’d like this transaction to confirm without major delay, but 12-18 blocks is fine.
HighPriority
We’d like this transaction to confirm in the next few blocks.
Trait Implementations§
Source§impl Clone for ConfirmationTarget
impl Clone for ConfirmationTarget
Source§fn clone(&self) -> ConfirmationTarget
fn clone(&self) -> ConfirmationTarget
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Hash for ConfirmationTarget
impl Hash for ConfirmationTarget
Source§impl PartialEq for ConfirmationTarget
impl PartialEq for ConfirmationTarget
impl Copy for ConfirmationTarget
impl Eq for ConfirmationTarget
impl StructuralPartialEq for ConfirmationTarget
Auto Trait Implementations§
impl Freeze for ConfirmationTarget
impl RefUnwindSafe for ConfirmationTarget
impl Send for ConfirmationTarget
impl Sync for ConfirmationTarget
impl Unpin for ConfirmationTarget
impl UnwindSafe for ConfirmationTarget
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