pub struct AgentInfo {
pub status: AgentStatus,
pub payable_account_id: Addr,
pub balance: Uint128,
pub last_executed_slot: u64,
pub register_start: Timestamp,
pub completed_block_tasks: Uint64,
pub completed_cron_tasks: Uint64,
pub missed_blocked_tasks: Uint64,
pub missed_cron_tasks: Uint64,
}Expand description
Agent data
Fields§
§status: AgentStatusAgent status
payable_account_id: AddrAccount where agent will move all his rewards
balance: Uint128Agent reward balance
last_executed_slot: u64Last executed slot number
register_start: TimestampRegistration time
completed_block_tasks: Uint64Execution Totals - helpful for alerting & displays
completed_cron_tasks: Uint64§missed_blocked_tasks: Uint64§missed_cron_tasks: Uint64Trait Implementations§
Source§impl<'de> Deserialize<'de> for AgentInfo
impl<'de> Deserialize<'de> for AgentInfo
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 AgentInfo
impl JsonSchema for AgentInfo
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &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 moreimpl StructuralPartialEq for AgentInfo
Auto Trait Implementations§
impl Freeze for AgentInfo
impl RefUnwindSafe for AgentInfo
impl Send for AgentInfo
impl Sync for AgentInfo
impl Unpin for AgentInfo
impl UnwindSafe for AgentInfo
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