pub struct SendResponse {
pub complete: bool,
pub hex: Option<String>,
pub psbt: Option<String>,
pub txid: Option<Txid>,
}Expand description
Response for the Send RPC method
Fields§
§complete: boolIf the transaction has a complete set of signatures
hex: Option<String>If add_to_wallet is false, the hex-encoded raw transaction with signature(s)
psbt: Option<String>If more signatures are needed, or if add_to_wallet is false, the base64-encoded (partially) signed transaction
txid: Option<Txid>The transaction id for the send. Only 1 transaction is created regardless of the number of addresses.
Trait Implementations§
Source§impl Clone for SendResponse
impl Clone for SendResponse
Source§fn clone(&self) -> SendResponse
fn clone(&self) -> SendResponse
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 SendResponse
impl Debug for SendResponse
Source§impl<'de> Deserialize<'de> for SendResponse
impl<'de> Deserialize<'de> for SendResponse
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 SendResponse
impl PartialEq for SendResponse
Source§impl Serialize for SendResponse
impl Serialize for SendResponse
impl StructuralPartialEq for SendResponse
Auto Trait Implementations§
impl Freeze for SendResponse
impl RefUnwindSafe for SendResponse
impl Send for SendResponse
impl Sync for SendResponse
impl Unpin for SendResponse
impl UnwindSafe for SendResponse
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