pub struct WalletProcessPsbtResponse {
pub complete: bool,
pub hex: Option<String>,
pub psbt: String,
}Expand description
Response for the WalletProcessPsbt RPC method
Fields§
§complete: boolIf the transaction has a complete set of signatures
hex: Option<String>The hex-encoded network transaction if complete
psbt: StringThe base64-encoded partially signed transaction
Trait Implementations§
Source§impl Clone for WalletProcessPsbtResponse
impl Clone for WalletProcessPsbtResponse
Source§fn clone(&self) -> WalletProcessPsbtResponse
fn clone(&self) -> WalletProcessPsbtResponse
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 WalletProcessPsbtResponse
impl Debug for WalletProcessPsbtResponse
Source§impl<'de> Deserialize<'de> for WalletProcessPsbtResponse
impl<'de> Deserialize<'de> for WalletProcessPsbtResponse
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
impl StructuralPartialEq for WalletProcessPsbtResponse
Auto Trait Implementations§
impl Freeze for WalletProcessPsbtResponse
impl RefUnwindSafe for WalletProcessPsbtResponse
impl Send for WalletProcessPsbtResponse
impl Sync for WalletProcessPsbtResponse
impl Unpin for WalletProcessPsbtResponse
impl UnwindSafe for WalletProcessPsbtResponse
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