Struct cw_croncat_core::msg::GetConfigResponse
source · pub struct GetConfigResponse {Show 18 fields
pub paused: bool,
pub owner_id: Addr,
pub min_tasks_per_agent: u64,
pub agents_eject_threshold: u64,
pub agent_active_indices: Vec<(SlotType, u32, u32)>,
pub agent_nomination_duration: u16,
pub cw_rules_addr: Addr,
pub agent_fee: u64,
pub gas_price: GasPrice,
pub gas_base_fee: u64,
pub gas_action_fee: u64,
pub proxy_callback_gas: u32,
pub slot_granularity_time: u64,
pub cw20_whitelist: Vec<Addr>,
pub native_denom: String,
pub available_balance: GenericBalance,
pub staked_balance: GenericBalance,
pub limit: u64,
}Fields§
§paused: bool§owner_id: Addr§min_tasks_per_agent: u64§agents_eject_threshold: u64§agent_active_indices: Vec<(SlotType, u32, u32)>§agent_nomination_duration: u16§cw_rules_addr: Addr§agent_fee: u64§gas_price: GasPrice§gas_base_fee: u64§gas_action_fee: u64§proxy_callback_gas: u32§slot_granularity_time: u64§cw20_whitelist: Vec<Addr>§native_denom: String§available_balance: GenericBalance§staked_balance: GenericBalance§limit: u64Trait Implementations§
source§impl Clone for GetConfigResponse
impl Clone for GetConfigResponse
source§fn clone(&self) -> GetConfigResponse
fn clone(&self) -> GetConfigResponse
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 moresource§impl Debug for GetConfigResponse
impl Debug for GetConfigResponse
source§impl<'de> Deserialize<'de> for GetConfigResponse
impl<'de> Deserialize<'de> for GetConfigResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for GetConfigResponse
impl JsonSchema for GetConfigResponse
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl PartialEq<GetConfigResponse> for GetConfigResponse
impl PartialEq<GetConfigResponse> for GetConfigResponse
source§fn eq(&self, other: &GetConfigResponse) -> bool
fn eq(&self, other: &GetConfigResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.