Struct cw_croncat_core::msg::AgentResponse
source · pub struct AgentResponse {
pub status: AgentStatus,
pub payable_account_id: Addr,
pub balance: GenericBalance,
pub total_tasks_executed: u64,
pub last_executed_slot: u64,
pub register_start: Timestamp,
}Fields§
§status: AgentStatus§payable_account_id: Addr§balance: GenericBalance§total_tasks_executed: u64§last_executed_slot: u64§register_start: TimestampTrait Implementations§
source§impl Clone for AgentResponse
impl Clone for AgentResponse
source§fn clone(&self) -> AgentResponse
fn clone(&self) -> AgentResponse
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 AgentResponse
impl Debug for AgentResponse
source§impl<'de> Deserialize<'de> for AgentResponse
impl<'de> Deserialize<'de> for AgentResponse
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 AgentResponse
impl JsonSchema for AgentResponse
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<AgentResponse> for AgentResponse
impl PartialEq<AgentResponse> for AgentResponse
source§fn eq(&self, other: &AgentResponse) -> bool
fn eq(&self, other: &AgentResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.