pub struct OperatorHealthReply {
pub healthy: Option<bool>,
pub failure_tolerance: Option<i32>,
pub servers: Option<Vec<ServerHealth>>,
}
Fields§
§healthy: Option<bool>
§failure_tolerance: Option<i32>
§servers: Option<Vec<ServerHealth>>
Implementations§
Source§impl OperatorHealthReply
impl OperatorHealthReply
pub fn new() -> OperatorHealthReply
Trait Implementations§
Source§impl Clone for OperatorHealthReply
impl Clone for OperatorHealthReply
Source§fn clone(&self) -> OperatorHealthReply
fn clone(&self) -> OperatorHealthReply
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 OperatorHealthReply
impl Debug for OperatorHealthReply
Source§impl<'de> Deserialize<'de> for OperatorHealthReply
impl<'de> Deserialize<'de> for OperatorHealthReply
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 PartialEq for OperatorHealthReply
impl PartialEq for OperatorHealthReply
Source§impl Serialize for OperatorHealthReply
impl Serialize for OperatorHealthReply
impl StructuralPartialEq for OperatorHealthReply
Auto Trait Implementations§
impl Freeze for OperatorHealthReply
impl RefUnwindSafe for OperatorHealthReply
impl Send for OperatorHealthReply
impl Sync for OperatorHealthReply
impl Unpin for OperatorHealthReply
impl UnwindSafe for OperatorHealthReply
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