pub struct GetDeployedContractAbiParams {
pub contract_address: String,
pub base_asset_id: String,
pub idempotency_key: Option<String>,
}
Expand description
struct for passing parameters to the method [get_deployed_contract_abi
]
Fields§
§contract_address: String
The contract’s onchain address
base_asset_id: String
The blockchain base assetId
idempotency_key: Option<String>
A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Implementations§
Source§impl GetDeployedContractAbiParams
impl GetDeployedContractAbiParams
Sourcepub fn builder() -> GetDeployedContractAbiParamsBuilder
pub fn builder() -> GetDeployedContractAbiParamsBuilder
Create an instance of GetDeployedContractAbiParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetDeployedContractAbiParams
impl Clone for GetDeployedContractAbiParams
Source§fn clone(&self) -> GetDeployedContractAbiParams
fn clone(&self) -> GetDeployedContractAbiParams
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 GetDeployedContractAbiParams
impl RefUnwindSafe for GetDeployedContractAbiParams
impl Send for GetDeployedContractAbiParams
impl Sync for GetDeployedContractAbiParams
impl Unpin for GetDeployedContractAbiParams
impl UnwindSafe for GetDeployedContractAbiParams
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