pub struct Status {
pub impl_version: 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 super::Agent::status
, containing the information returned
by the status endpoint of a replica.
Fields§
§impl_version: Option<String>
Optional. The precise git revision of the Internet Computer Protocol 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§
source§impl Ord for Status
impl Ord for Status
source§impl PartialOrd for Status
impl PartialOrd for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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