pub struct HealthzResponse {
pub ok: bool,
}Expand description
HealthzResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
},
"additionalProperties": false
}Fields§
§ok: boolImplementations§
Source§impl HealthzResponse
impl HealthzResponse
pub fn builder() -> HealthzResponse
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 (const: unstable) · 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
Source§impl From<&HealthzResponse> for HealthzResponse
impl From<&HealthzResponse> for HealthzResponse
Source§fn from(value: &HealthzResponse) -> Self
fn from(value: &HealthzResponse) -> Self
Converts to this type from the input type.
Source§impl From<HealthzResponse> for HealthzResponse
impl From<HealthzResponse> for HealthzResponse
Source§fn from(value: HealthzResponse) -> Self
fn from(value: HealthzResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for HealthzResponse
impl Serialize for HealthzResponse
Source§impl TryFrom<HealthzResponse> for HealthzResponse
impl TryFrom<HealthzResponse> for HealthzResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: HealthzResponse) -> Result<Self, ConversionError>
fn try_from(value: HealthzResponse) -> Result<Self, ConversionError>
Performs the conversion.
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