pub struct GetDeployedContractsParams {
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
pub contract_address: Option<String>,
pub base_asset_id: Option<String>,
pub contract_template_id: Option<String>,
}
Expand description
struct for passing parameters to the method [get_deployed_contracts
]
Fields§
§page_cursor: Option<String>
Page cursor to get the next page
page_size: Option<f64>
Number of items per page, requesting more then max will return max items
contract_address: Option<String>
The contract’s onchain address
base_asset_id: Option<String>
The blockchain asset ID
contract_template_id: Option<String>
The contract template identifier
Implementations§
Source§impl GetDeployedContractsParams
impl GetDeployedContractsParams
Sourcepub fn builder() -> GetDeployedContractsParamsBuilder
pub fn builder() -> GetDeployedContractsParamsBuilder
Create an instance of GetDeployedContractsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetDeployedContractsParams
impl Clone for GetDeployedContractsParams
Source§fn clone(&self) -> GetDeployedContractsParams
fn clone(&self) -> GetDeployedContractsParams
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 GetDeployedContractsParams
impl RefUnwindSafe for GetDeployedContractsParams
impl Send for GetDeployedContractsParams
impl Sync for GetDeployedContractsParams
impl Unpin for GetDeployedContractsParams
impl UnwindSafe for GetDeployedContractsParams
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