pub struct PsbtBumpFee {
pub psbt: Psbt,
pub origfee: FeeRate,
pub fee: FeeRate,
pub errors: Option<Vec<String>>,
}
Expand description
Result of the psbtbumpfee RPC method.
Fields§
§psbt: Psbt
The base64-encoded unsigned PSBT of the new transaction.
origfee: FeeRate
The fee of the replaced transaction.
fee: FeeRate
The fee of the new transaction.
errors: Option<Vec<String>>
Errors encountered during processing (if any).
Trait Implementations§
Source§impl Clone for PsbtBumpFee
impl Clone for PsbtBumpFee
Source§fn clone(&self) -> PsbtBumpFee
fn clone(&self) -> PsbtBumpFee
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PsbtBumpFee
impl Debug for PsbtBumpFee
Source§impl<'de> Deserialize<'de> for PsbtBumpFee
impl<'de> Deserialize<'de> for PsbtBumpFee
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PsbtBumpFee
impl PartialEq for PsbtBumpFee
Source§impl Serialize for PsbtBumpFee
impl Serialize for PsbtBumpFee
impl StructuralPartialEq for PsbtBumpFee
Auto Trait Implementations§
impl Freeze for PsbtBumpFee
impl RefUnwindSafe for PsbtBumpFee
impl Send for PsbtBumpFee
impl Sync for PsbtBumpFee
impl Unpin for PsbtBumpFee
impl UnwindSafe for PsbtBumpFee
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