pub struct Payment {
pub uncomit_psbt: Psbt,
pub psbt_meta: PsbtMeta,
pub bundle: PrefabBundle,
pub terminals: BTreeSet<AuthToken>,
}Expand description
Payment structure is used in the process of RBF (replace by fee). It is returned by
RgbRuntime::pay_invoice method when the original transaction is created, and then must be
provided to RgbRuntime::rbf to do the RBF transaction.
Fields§
§uncomit_psbt: Psbt§psbt_meta: PsbtMeta§bundle: PrefabBundle§terminals: BTreeSet<AuthToken>Trait Implementations§
impl Eq for Payment
impl StructuralPartialEq for Payment
Auto Trait Implementations§
impl Freeze for Payment
impl RefUnwindSafe for Payment
impl Send for Payment
impl Sync for Payment
impl Unpin for Payment
impl UnwindSafe for Payment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.