pub struct SendAllResponse {
pub complete: bool,
pub hex: Option<String>,
pub psbt: Option<String>,
pub txid: Option<Txid>,
}Expand description
Response for the SendAll 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 SendAllResponse
impl Clone for SendAllResponse
Source§fn clone(&self) -> SendAllResponse
fn clone(&self) -> SendAllResponse
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 SendAllResponse
impl Debug for SendAllResponse
Source§impl<'de> Deserialize<'de> for SendAllResponse
impl<'de> Deserialize<'de> for SendAllResponse
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 SendAllResponse
impl PartialEq for SendAllResponse
Source§impl Serialize for SendAllResponse
impl Serialize for SendAllResponse
impl StructuralPartialEq for SendAllResponse
Auto Trait Implementations§
impl Freeze for SendAllResponse
impl RefUnwindSafe for SendAllResponse
impl Send for SendAllResponse
impl Sync for SendAllResponse
impl Unpin for SendAllResponse
impl UnwindSafe for SendAllResponse
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