pub struct DescriptorProcessPsbtResponse {
pub complete: bool,
pub hex: Option<String>,
pub psbt: String,
}Expand description
Response for the DescriptorProcessPsbt 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 DescriptorProcessPsbtResponse
impl Clone for DescriptorProcessPsbtResponse
Source§fn clone(&self) -> DescriptorProcessPsbtResponse
fn clone(&self) -> DescriptorProcessPsbtResponse
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<'de> Deserialize<'de> for DescriptorProcessPsbtResponse
impl<'de> Deserialize<'de> for DescriptorProcessPsbtResponse
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 DescriptorProcessPsbtResponse
impl PartialEq for DescriptorProcessPsbtResponse
Source§fn eq(&self, other: &DescriptorProcessPsbtResponse) -> bool
fn eq(&self, other: &DescriptorProcessPsbtResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescriptorProcessPsbtResponse
Auto Trait Implementations§
impl Freeze for DescriptorProcessPsbtResponse
impl RefUnwindSafe for DescriptorProcessPsbtResponse
impl Send for DescriptorProcessPsbtResponse
impl Sync for DescriptorProcessPsbtResponse
impl Unpin for DescriptorProcessPsbtResponse
impl UnwindSafe for DescriptorProcessPsbtResponse
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