pub struct GetDeployedContractByAddressParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetDeployedContractByAddressParamsBuilder<S>
impl<S: State> GetDeployedContractByAddressParamsBuilder<S>
Sourcepub fn build(self) -> GetDeployedContractByAddressParamswhere
S: IsComplete,
pub fn build(self) -> GetDeployedContractByAddressParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn contract_address(
self,
value: String,
) -> GetDeployedContractByAddressParamsBuilder<SetContractAddress<S>>where
S::ContractAddress: IsUnset,
pub fn contract_address(
self,
value: String,
) -> GetDeployedContractByAddressParamsBuilder<SetContractAddress<S>>where
S::ContractAddress: IsUnset,
Required.
The contract’s onchain address
Sourcepub fn asset_id(
self,
value: String,
) -> GetDeployedContractByAddressParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
pub fn asset_id(
self,
value: String,
) -> GetDeployedContractByAddressParamsBuilder<SetAssetId<S>>where
S::AssetId: IsUnset,
Required.
The blockchain base asset ID
Auto Trait Implementations§
impl<S> Freeze for GetDeployedContractByAddressParamsBuilder<S>
impl<S> RefUnwindSafe for GetDeployedContractByAddressParamsBuilder<S>
impl<S> Send for GetDeployedContractByAddressParamsBuilder<S>
impl<S> Sync for GetDeployedContractByAddressParamsBuilder<S>
impl<S> Unpin for GetDeployedContractByAddressParamsBuilder<S>
impl<S> UnwindSafe for GetDeployedContractByAddressParamsBuilder<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