pub struct HealthFindingsPage {
pub total: usize,
pub unfiltered_total: usize,
pub returned: usize,
pub start_index: usize,
pub limit: usize,
pub findings: Vec<HealthFinding>,
}Expand description
Bounded health findings page returned by the database layer.
Fields§
§total: usizeFindings after filters are applied.
unfiltered_total: usizeFindings before filters are applied, after resolved findings are removed.
returned: usizeFindings returned in this page.
start_index: usizePagination start index used for this page.
limit: usizeMaximum findings requested for this page.
findings: Vec<HealthFinding>Returned health finding rows.
Trait Implementations§
Source§impl Clone for HealthFindingsPage
impl Clone for HealthFindingsPage
Source§fn clone(&self) -> HealthFindingsPage
fn clone(&self) -> HealthFindingsPage
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 HealthFindingsPage
impl Debug for HealthFindingsPage
Source§impl PartialEq for HealthFindingsPage
impl PartialEq for HealthFindingsPage
Source§impl Serialize for HealthFindingsPage
impl Serialize for HealthFindingsPage
impl Eq for HealthFindingsPage
impl StructuralPartialEq for HealthFindingsPage
Auto Trait Implementations§
impl Freeze for HealthFindingsPage
impl RefUnwindSafe for HealthFindingsPage
impl Send for HealthFindingsPage
impl Sync for HealthFindingsPage
impl Unpin for HealthFindingsPage
impl UnwindSafe for HealthFindingsPage
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more