pub struct GetTransactionReceiptParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetTransactionReceiptParamsBuilder<S>
impl<S: State> GetTransactionReceiptParamsBuilder<S>
Sourcepub fn build(self) -> GetTransactionReceiptParamswhere
S: IsComplete,
pub fn build(self) -> GetTransactionReceiptParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn base_asset_id(
self,
value: String,
) -> GetTransactionReceiptParamsBuilder<SetBaseAssetId<S>>where
S::BaseAssetId: IsUnset,
pub fn base_asset_id(
self,
value: String,
) -> GetTransactionReceiptParamsBuilder<SetBaseAssetId<S>>where
S::BaseAssetId: IsUnset,
Required.
The blockchain base assetId
Sourcepub fn tx_hash(
self,
value: String,
) -> GetTransactionReceiptParamsBuilder<SetTxHash<S>>where
S::TxHash: IsUnset,
pub fn tx_hash(
self,
value: String,
) -> GetTransactionReceiptParamsBuilder<SetTxHash<S>>where
S::TxHash: IsUnset,
Required.
The transaction hash
Auto Trait Implementations§
impl<S> Freeze for GetTransactionReceiptParamsBuilder<S>
impl<S> RefUnwindSafe for GetTransactionReceiptParamsBuilder<S>
impl<S> Send for GetTransactionReceiptParamsBuilder<S>
impl<S> Sync for GetTransactionReceiptParamsBuilder<S>
impl<S> Unpin for GetTransactionReceiptParamsBuilder<S>
impl<S> UnwindSafe for GetTransactionReceiptParamsBuilder<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