pub struct GetTransactionByExternalIdParams {
pub external_tx_id: String,
}
Expand description
struct for passing parameters to the method
[get_transaction_by_external_id
]
Fields§
§external_tx_id: String
The external ID of the transaction to return
Implementations§
Source§impl GetTransactionByExternalIdParams
impl GetTransactionByExternalIdParams
Sourcepub fn builder() -> GetTransactionByExternalIdParamsBuilder
pub fn builder() -> GetTransactionByExternalIdParamsBuilder
Create an instance of GetTransactionByExternalIdParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetTransactionByExternalIdParams
impl Clone for GetTransactionByExternalIdParams
Source§fn clone(&self) -> GetTransactionByExternalIdParams
fn clone(&self) -> GetTransactionByExternalIdParams
Returns a copy 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 GetTransactionByExternalIdParams
impl RefUnwindSafe for GetTransactionByExternalIdParams
impl Send for GetTransactionByExternalIdParams
impl Sync for GetTransactionByExternalIdParams
impl Unpin for GetTransactionByExternalIdParams
impl UnwindSafe for GetTransactionByExternalIdParams
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