pub struct CreateActionOptions {
pub sign_and_process: BooleanDefaultTrue,
pub accept_delayed_broadcast: BooleanDefaultTrue,
pub trust_self: Option<TrustSelf>,
pub known_txids: Vec<TXIDHexString>,
pub return_txid_only: BooleanDefaultFalse,
pub no_send: BooleanDefaultFalse,
pub no_send_change: Vec<OutpointString>,
pub send_with: Vec<TXIDHexString>,
pub randomize_outputs: BooleanDefaultTrue,
}Expand description
Optional parameters for creating a new transaction.
Fields§
§sign_and_process: BooleanDefaultTrue§accept_delayed_broadcast: BooleanDefaultTrue§trust_self: Option<TrustSelf>§known_txids: Vec<TXIDHexString>§return_txid_only: BooleanDefaultFalse§no_send: BooleanDefaultFalse§no_send_change: Vec<OutpointString>§send_with: Vec<TXIDHexString>§randomize_outputs: BooleanDefaultTrueTrait Implementations§
Source§impl Clone for CreateActionOptions
impl Clone for CreateActionOptions
Source§fn clone(&self) -> CreateActionOptions
fn clone(&self) -> CreateActionOptions
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 CreateActionOptions
impl Debug for CreateActionOptions
Source§impl Default for CreateActionOptions
impl Default for CreateActionOptions
Source§fn default() -> CreateActionOptions
fn default() -> CreateActionOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateActionOptions
impl RefUnwindSafe for CreateActionOptions
impl Send for CreateActionOptions
impl Sync for CreateActionOptions
impl Unpin for CreateActionOptions
impl UnsafeUnpin for CreateActionOptions
impl UnwindSafe for CreateActionOptions
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