pub struct DropTransactionParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> DropTransactionParamsBuilder<S>
impl<S: State> DropTransactionParamsBuilder<S>
Sourcepub fn build(self) -> DropTransactionParamswhere
S: IsComplete,
pub fn build(self) -> DropTransactionParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn tx_id(self, value: String) -> DropTransactionParamsBuilder<SetTxId<S>>where
S::TxId: IsUnset,
pub fn tx_id(self, value: String) -> DropTransactionParamsBuilder<SetTxId<S>>where
S::TxId: IsUnset,
Required.
The ID of the transaction
Sourcepub fn x_end_user_wallet_id(
self,
value: String,
) -> DropTransactionParamsBuilder<SetXEndUserWalletId<S>>where
S::XEndUserWalletId: IsUnset,
pub fn x_end_user_wallet_id(
self,
value: String,
) -> DropTransactionParamsBuilder<SetXEndUserWalletId<S>>where
S::XEndUserWalletId: IsUnset,
Sourcepub fn maybe_x_end_user_wallet_id(
self,
value: Option<String>,
) -> DropTransactionParamsBuilder<SetXEndUserWalletId<S>>where
S::XEndUserWalletId: IsUnset,
pub fn maybe_x_end_user_wallet_id(
self,
value: Option<String>,
) -> DropTransactionParamsBuilder<SetXEndUserWalletId<S>>where
S::XEndUserWalletId: IsUnset,
Sourcepub fn idempotency_key(
self,
value: String,
) -> DropTransactionParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
pub fn idempotency_key(
self,
value: String,
) -> DropTransactionParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
Sourcepub fn maybe_idempotency_key(
self,
value: Option<String>,
) -> DropTransactionParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
pub fn maybe_idempotency_key(
self,
value: Option<String>,
) -> DropTransactionParamsBuilder<SetIdempotencyKey<S>>where
S::IdempotencyKey: IsUnset,
Sourcepub fn drop_transaction_request(
self,
value: DropTransactionRequest,
) -> DropTransactionParamsBuilder<SetDropTransactionRequest<S>>where
S::DropTransactionRequest: IsUnset,
pub fn drop_transaction_request(
self,
value: DropTransactionRequest,
) -> DropTransactionParamsBuilder<SetDropTransactionRequest<S>>where
S::DropTransactionRequest: IsUnset,
Sourcepub fn maybe_drop_transaction_request(
self,
value: Option<DropTransactionRequest>,
) -> DropTransactionParamsBuilder<SetDropTransactionRequest<S>>where
S::DropTransactionRequest: IsUnset,
pub fn maybe_drop_transaction_request(
self,
value: Option<DropTransactionRequest>,
) -> DropTransactionParamsBuilder<SetDropTransactionRequest<S>>where
S::DropTransactionRequest: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for DropTransactionParamsBuilder<S>
impl<S> RefUnwindSafe for DropTransactionParamsBuilder<S>
impl<S> Send for DropTransactionParamsBuilder<S>
impl<S> Sync for DropTransactionParamsBuilder<S>
impl<S> Unpin for DropTransactionParamsBuilder<S>
impl<S> UnwindSafe for DropTransactionParamsBuilder<S>
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