pub struct BroadcastPackageError {
pub txid: Txid,
pub error: String,
}Expand description
Error details for a transaction that failed to broadcast in a package.
Fields§
§txid: TxidThe txid of the transaction that failed.
error: StringThe error message describing why the transaction was rejected.
Trait Implementations§
Source§impl Clone for BroadcastPackageError
impl Clone for BroadcastPackageError
Source§fn clone(&self) -> BroadcastPackageError
fn clone(&self) -> BroadcastPackageError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BroadcastPackageError
impl Debug for BroadcastPackageError
Source§impl<'de> Deserialize<'de> for BroadcastPackageError
impl<'de> Deserialize<'de> for BroadcastPackageError
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 BroadcastPackageError
impl RefUnwindSafe for BroadcastPackageError
impl Send for BroadcastPackageError
impl Sync for BroadcastPackageError
impl Unpin for BroadcastPackageError
impl UnsafeUnpin for BroadcastPackageError
impl UnwindSafe for BroadcastPackageError
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