pub struct GetDeployedContractByAddressParams {
pub contract_address: String,
pub asset_id: String,
}
Expand description
struct for passing parameters to the method
[get_deployed_contract_by_address
]
Fields§
§contract_address: String
The contract’s onchain address
asset_id: String
The blockchain base asset ID
Implementations§
Source§impl GetDeployedContractByAddressParams
impl GetDeployedContractByAddressParams
Sourcepub fn builder() -> GetDeployedContractByAddressParamsBuilder
pub fn builder() -> GetDeployedContractByAddressParamsBuilder
Create an instance of GetDeployedContractByAddressParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetDeployedContractByAddressParams
impl Clone for GetDeployedContractByAddressParams
Source§fn clone(&self) -> GetDeployedContractByAddressParams
fn clone(&self) -> GetDeployedContractByAddressParams
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 GetDeployedContractByAddressParams
impl RefUnwindSafe for GetDeployedContractByAddressParams
impl Send for GetDeployedContractByAddressParams
impl Sync for GetDeployedContractByAddressParams
impl Unpin for GetDeployedContractByAddressParams
impl UnwindSafe for GetDeployedContractByAddressParams
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