pub struct HealthzResponse {
pub ok: bool,
}Expand description
Response for HealthzRequest.
Fields§
§ok: boolWhether the validator reports itself healthy.
Trait Implementations§
Source§impl Clone for HealthzResponse
impl Clone for HealthzResponse
Source§fn clone(&self) -> HealthzResponse
fn clone(&self) -> HealthzResponse
Returns a duplicate 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 HealthzResponse
impl Debug for HealthzResponse
Source§impl<'de> Deserialize<'de> for HealthzResponse
impl<'de> Deserialize<'de> for HealthzResponse
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 HealthzResponse
impl RefUnwindSafe for HealthzResponse
impl Send for HealthzResponse
impl Sync for HealthzResponse
impl Unpin for HealthzResponse
impl UnsafeUnpin for HealthzResponse
impl UnwindSafe for HealthzResponse
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