pub struct SendManyResponse {
pub fee_reason: Option<String>,
pub txid: Option<Txid>,
}Expand description
Response for the SendMany RPC method
Fields§
§fee_reason: Option<String>The transaction fee reason.
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 SendManyResponse
impl Clone for SendManyResponse
Source§fn clone(&self) -> SendManyResponse
fn clone(&self) -> SendManyResponse
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 SendManyResponse
impl Debug for SendManyResponse
Source§impl<'de> Deserialize<'de> for SendManyResponse
impl<'de> Deserialize<'de> for SendManyResponse
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 SendManyResponse
impl PartialEq for SendManyResponse
Source§impl Serialize for SendManyResponse
impl Serialize for SendManyResponse
impl StructuralPartialEq for SendManyResponse
Auto Trait Implementations§
impl Freeze for SendManyResponse
impl RefUnwindSafe for SendManyResponse
impl Send for SendManyResponse
impl Sync for SendManyResponse
impl Unpin for SendManyResponse
impl UnwindSafe for SendManyResponse
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