pub struct AdditionalOptions {
pub keep_running: bool,
pub skip_service_loop: bool,
pub generate_tx_only: bool,
pub skip_multi_contract_check: bool,
pub contract_use_direct_method: bool,
pub contract_use_unpacked_method: bool,
pub use_transfer_for_single_payment: bool,
}Fields§
§keep_running: boolSet to keep running when finished processing transactions
skip_service_loop: boolSet to skip running service loop (do not send and process transactions)
generate_tx_only: boolDo not send or process transactions, only generate stubs
skip_multi_contract_check: boolSkip multi contract check when generating txs
contract_use_direct_method: bool§contract_use_unpacked_method: bool§use_transfer_for_single_payment: boolImplementations§
Source§impl AdditionalOptions
impl AdditionalOptions
pub fn keep_running(&mut self, keep_running: bool) -> &mut Self
Trait Implementations§
Source§impl Clone for AdditionalOptions
impl Clone for AdditionalOptions
Source§fn clone(&self) -> AdditionalOptions
fn clone(&self) -> AdditionalOptions
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 AdditionalOptions
impl Debug for AdditionalOptions
Auto Trait Implementations§
impl Freeze for AdditionalOptions
impl RefUnwindSafe for AdditionalOptions
impl Send for AdditionalOptions
impl Sync for AdditionalOptions
impl Unpin for AdditionalOptions
impl UnwindSafe for AdditionalOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more