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