Struct BumpTransactionEventHandler

Source
pub struct BumpTransactionEventHandler<B: Deref, C: Deref, SP: Deref, L: Deref>{ /* private fields */ }
Expand description

A handler for Event::BumpTransaction events that sources confirmed UTXOs from a CoinSelectionSource to fee bump transactions via Child-Pays-For-Parent (CPFP) or Replace-By-Fee (RBF).

Implementations§

Source§

impl<B: Deref, C: Deref, SP: Deref, L: Deref> BumpTransactionEventHandler<B, C, SP, L>

Source

pub fn new( broadcaster: B, utxo_source: C, signer_provider: SP, logger: L, ) -> Self

Returns a new instance capable of handling Event::BumpTransaction events.

Source

pub fn handle_event(&self, event: &BumpTransactionEvent)

Handles all variants of BumpTransactionEvent.

Auto Trait Implementations§

§

impl<B, C, SP, L> Freeze for BumpTransactionEventHandler<B, C, SP, L>
where B: Freeze, C: Freeze, SP: Freeze, L: Freeze,

§

impl<B, C, SP, L> RefUnwindSafe for BumpTransactionEventHandler<B, C, SP, L>

§

impl<B, C, SP, L> Send for BumpTransactionEventHandler<B, C, SP, L>
where B: Send, C: Send, SP: Send, L: Send,

§

impl<B, C, SP, L> Sync for BumpTransactionEventHandler<B, C, SP, L>
where B: Sync, C: Sync, SP: Sync, L: Sync,

§

impl<B, C, SP, L> Unpin for BumpTransactionEventHandler<B, C, SP, L>
where B: Unpin, C: Unpin, SP: Unpin, L: Unpin,

§

impl<B, C, SP, L> UnwindSafe for BumpTransactionEventHandler<B, C, SP, L>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V