pub struct GetDeployedContractsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetDeployedContractsParamsBuilder<S>
impl<S: State> GetDeployedContractsParamsBuilder<S>
Sourcepub fn build(self) -> GetDeployedContractsParamswhere
S: IsComplete,
pub fn build(self) -> GetDeployedContractsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn page_cursor(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn page_cursor(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn page_size(
self,
value: f64,
) -> GetDeployedContractsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(
self,
value: f64,
) -> GetDeployedContractsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetDeployedContractsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetDeployedContractsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn contract_address(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetContractAddress<S>>where
S::ContractAddress: IsUnset,
pub fn contract_address(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetContractAddress<S>>where
S::ContractAddress: IsUnset,
Sourcepub fn maybe_contract_address(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetContractAddress<S>>where
S::ContractAddress: IsUnset,
pub fn maybe_contract_address(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetContractAddress<S>>where
S::ContractAddress: IsUnset,
Sourcepub fn base_asset_id(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetBaseAssetId<S>>where
S::BaseAssetId: IsUnset,
pub fn base_asset_id(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetBaseAssetId<S>>where
S::BaseAssetId: IsUnset,
Sourcepub fn maybe_base_asset_id(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetBaseAssetId<S>>where
S::BaseAssetId: IsUnset,
pub fn maybe_base_asset_id(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetBaseAssetId<S>>where
S::BaseAssetId: IsUnset,
Sourcepub fn contract_template_id(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetContractTemplateId<S>>where
S::ContractTemplateId: IsUnset,
pub fn contract_template_id(
self,
value: String,
) -> GetDeployedContractsParamsBuilder<SetContractTemplateId<S>>where
S::ContractTemplateId: IsUnset,
Sourcepub fn maybe_contract_template_id(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetContractTemplateId<S>>where
S::ContractTemplateId: IsUnset,
pub fn maybe_contract_template_id(
self,
value: Option<String>,
) -> GetDeployedContractsParamsBuilder<SetContractTemplateId<S>>where
S::ContractTemplateId: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetDeployedContractsParamsBuilder<S>
impl<S> RefUnwindSafe for GetDeployedContractsParamsBuilder<S>
impl<S> Send for GetDeployedContractsParamsBuilder<S>
impl<S> Sync for GetDeployedContractsParamsBuilder<S>
impl<S> Unpin for GetDeployedContractsParamsBuilder<S>
impl<S> UnwindSafe for GetDeployedContractsParamsBuilder<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