struct McpBriefBlockers {
total: usize,
returned: usize,
truncated: bool,
items: Vec<McpBriefBlocker>,
}Expand description
Bounded health blocker section.
Fields§
§total: usizeFindings after filters are applied.
returned: usizeFindings returned in this brief.
truncated: boolWhether more blockers exist.
items: Vec<McpBriefBlocker>Blocker rows.
Trait Implementations§
Source§impl Clone for McpBriefBlockers
impl Clone for McpBriefBlockers
Source§fn clone(&self) -> McpBriefBlockers
fn clone(&self) -> McpBriefBlockers
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 McpBriefBlockers
impl Debug for McpBriefBlockers
Auto Trait Implementations§
impl Freeze for McpBriefBlockers
impl RefUnwindSafe for McpBriefBlockers
impl Send for McpBriefBlockers
impl Sync for McpBriefBlockers
impl Unpin for McpBriefBlockers
impl UnwindSafe for McpBriefBlockers
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more