pub struct SubmitPackageTxResult {
pub txid: Txid,
pub error: Option<String>,
}Expand description
Per-transaction result from the submitpackage RPC call.
Fields§
§txid: Txid§error: Option<String>Trait Implementations§
Source§impl Clone for SubmitPackageTxResult
impl Clone for SubmitPackageTxResult
Source§fn clone(&self) -> SubmitPackageTxResult
fn clone(&self) -> SubmitPackageTxResult
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 SubmitPackageTxResult
impl Debug for SubmitPackageTxResult
Source§impl<'de> Deserialize<'de> for SubmitPackageTxResult
impl<'de> Deserialize<'de> for SubmitPackageTxResult
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
Auto Trait Implementations§
impl Freeze for SubmitPackageTxResult
impl RefUnwindSafe for SubmitPackageTxResult
impl Send for SubmitPackageTxResult
impl Sync for SubmitPackageTxResult
impl Unpin for SubmitPackageTxResult
impl UnwindSafe for SubmitPackageTxResult
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