pub struct GetTransactionReceiptParams {
pub base_asset_id: String,
pub tx_hash: String,
}
Expand description
struct for passing parameters to the method [get_transaction_receipt
]
Fields§
§base_asset_id: String
The blockchain base assetId
tx_hash: String
The transaction hash
Implementations§
Source§impl GetTransactionReceiptParams
impl GetTransactionReceiptParams
Sourcepub fn builder() -> GetTransactionReceiptParamsBuilder
pub fn builder() -> GetTransactionReceiptParamsBuilder
Create an instance of GetTransactionReceiptParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetTransactionReceiptParams
impl Clone for GetTransactionReceiptParams
Source§fn clone(&self) -> GetTransactionReceiptParams
fn clone(&self) -> GetTransactionReceiptParams
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 GetTransactionReceiptParams
impl RefUnwindSafe for GetTransactionReceiptParams
impl Send for GetTransactionReceiptParams
impl Sync for GetTransactionReceiptParams
impl Unpin for GetTransactionReceiptParams
impl UnwindSafe for GetTransactionReceiptParams
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