pub struct StatusReply {
pub healthy: Option<bool>,
pub detail: Option<String>,
pub uptime_secs: Option<u64>,
}Expand description
Status reply payload returned by the status helper.
Fields§
§healthy: Option<bool>§detail: Option<String>§uptime_secs: Option<u64>Trait Implementations§
Source§impl Debug for StatusReply
impl Debug for StatusReply
Source§impl<'de> Deserialize<'de> for StatusReply
impl<'de> Deserialize<'de> for StatusReply
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
Auto Trait Implementations§
impl Freeze for StatusReply
impl RefUnwindSafe for StatusReply
impl Send for StatusReply
impl Sync for StatusReply
impl Unpin for StatusReply
impl UnwindSafe for StatusReply
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