pub struct QueryHealthReport {
pub state: QueryHealthState,
pub last_error: Option<DiagnosticSummary>,
}Expand description
Aggregate health report for the shared query/follow surface.
Fields§
§state: QueryHealthStateAggregate query/follow health state.
last_error: Option<DiagnosticSummary>Optional last query/follow error summary.
Trait Implementations§
Source§impl Clone for QueryHealthReport
impl Clone for QueryHealthReport
Source§fn clone(&self) -> QueryHealthReport
fn clone(&self) -> QueryHealthReport
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 QueryHealthReport
impl Debug for QueryHealthReport
Source§impl<'de> Deserialize<'de> for QueryHealthReport
impl<'de> Deserialize<'de> for QueryHealthReport
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 QueryHealthReport
impl PartialEq for QueryHealthReport
Source§impl Serialize for QueryHealthReport
impl Serialize for QueryHealthReport
impl StructuralPartialEq for QueryHealthReport
Auto Trait Implementations§
impl Freeze for QueryHealthReport
impl RefUnwindSafe for QueryHealthReport
impl Send for QueryHealthReport
impl Sync for QueryHealthReport
impl Unpin for QueryHealthReport
impl UnsafeUnpin for QueryHealthReport
impl UnwindSafe for QueryHealthReport
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