Struct ic_agent::agent::status::Status [−][src]
pub struct Status {
pub ic_api_version: String,
pub impl_source: Option<String>,
pub impl_version: Option<String>,
pub impl_revision: Option<String>,
pub replica_health_status: Option<String>,
pub root_key: Option<Vec<u8>>,
pub values: BTreeMap<String, Box<Value>>,
}Expand description
The structure returned by [ic_agent::Agent::status], containing the information returned
by the status endpoint of a replica.
Fields
ic_api_version: StringIdentifies the interface version supported, i.e. the version of the present document that the internet computer aims to support, e.g. 0.8.1. The implementation may also return unversioned to indicate that it does not comply to a particular version, e.g. in between releases.
impl_source: Option<String>Optional. Identifies the implementation of the Internet Computer, by convention with the canonical location of the source code.
impl_version: Option<String>Optional. If the user is talking to a released version of an Internet Computer
implementation, this is the version number. For non-released versions, output of
git describe like 0.1.13-13-g2414721 would also be very suitable.
impl_revision: Option<String>Optional. The precise git revision of the Internet Computer implementation.
replica_health_status: Option<String>Optional. The health status of the replica. One hopes it’s “healthy”.
root_key: Option<Vec<u8>>Optional. The root (public) key used to verify certificates.
values: BTreeMap<String, Box<Value>>Contains any additional values that the replica gave as status.
Trait Implementations
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Status
impl UnwindSafe for Status
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
