pub struct CreateActionResult {
pub txid: Option<TXIDHexString>,
pub tx: Option<Vec<u8>>,
pub no_send_change: Vec<OutpointString>,
pub send_with_results: Vec<SendWithResult>,
pub signable_transaction: Option<SignableTransaction>,
}Expand description
Result of creating a transaction.
Fields§
§txid: Option<TXIDHexString>§tx: Option<Vec<u8>>§no_send_change: Vec<OutpointString>§send_with_results: Vec<SendWithResult>§signable_transaction: Option<SignableTransaction>Trait Implementations§
Source§impl Clone for CreateActionResult
impl Clone for CreateActionResult
Source§fn clone(&self) -> CreateActionResult
fn clone(&self) -> CreateActionResult
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 CreateActionResult
impl RefUnwindSafe for CreateActionResult
impl Send for CreateActionResult
impl Sync for CreateActionResult
impl Unpin for CreateActionResult
impl UnsafeUnpin for CreateActionResult
impl UnwindSafe for CreateActionResult
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