pub struct GetTransactionByExternalIdParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetTransactionByExternalIdParamsBuilder<S>
impl<S: State> GetTransactionByExternalIdParamsBuilder<S>
Sourcepub fn build(self) -> GetTransactionByExternalIdParamswhere
S: IsComplete,
pub fn build(self) -> GetTransactionByExternalIdParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn external_tx_id(
self,
value: String,
) -> GetTransactionByExternalIdParamsBuilder<SetExternalTxId<S>>where
S::ExternalTxId: IsUnset,
pub fn external_tx_id(
self,
value: String,
) -> GetTransactionByExternalIdParamsBuilder<SetExternalTxId<S>>where
S::ExternalTxId: IsUnset,
Required.
The external ID of the transaction to return
Auto Trait Implementations§
impl<S> Freeze for GetTransactionByExternalIdParamsBuilder<S>
impl<S> RefUnwindSafe for GetTransactionByExternalIdParamsBuilder<S>
impl<S> Send for GetTransactionByExternalIdParamsBuilder<S>
impl<S> Sync for GetTransactionByExternalIdParamsBuilder<S>
impl<S> Unpin for GetTransactionByExternalIdParamsBuilder<S>
impl<S> UnwindSafe for GetTransactionByExternalIdParamsBuilder<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