pub struct SignActionResult {
pub txid: Option<TXIDHexString>,
pub tx: Option<Vec<u8>>,
pub send_with_results: Vec<SendWithResult>,
}Expand description
Result of a successful signing operation.
Fields§
§txid: Option<TXIDHexString>§tx: Option<Vec<u8>>§send_with_results: Vec<SendWithResult>Trait Implementations§
Source§impl Clone for SignActionResult
impl Clone for SignActionResult
Source§fn clone(&self) -> SignActionResult
fn clone(&self) -> SignActionResult
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 moreAuto Trait Implementations§
impl Freeze for SignActionResult
impl RefUnwindSafe for SignActionResult
impl Send for SignActionResult
impl Sync for SignActionResult
impl Unpin for SignActionResult
impl UnsafeUnpin for SignActionResult
impl UnwindSafe for SignActionResult
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