pub struct CoverageRow {
pub identity: String,
pub status: String,
pub files: i64,
pub symbols: i64,
}Expand description
One row of rq status output — the current indexed totals for a repo (not
any single run’s incremental counts).
Fields§
§identity: StringRepository identity (github.com/org/repo or local:/path). Named repo
in JSON, matching the search result field.
status: String§files: i64§symbols: i64Trait Implementations§
Source§impl Clone for CoverageRow
impl Clone for CoverageRow
Source§fn clone(&self) -> CoverageRow
fn clone(&self) -> CoverageRow
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 CoverageRow
impl Debug for CoverageRow
impl Eq for CoverageRow
Source§impl PartialEq for CoverageRow
impl PartialEq for CoverageRow
Source§fn eq(&self, other: &CoverageRow) -> bool
fn eq(&self, other: &CoverageRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoverageRow
impl Serialize for CoverageRow
impl StructuralPartialEq for CoverageRow
Auto Trait Implementations§
impl Freeze for CoverageRow
impl RefUnwindSafe for CoverageRow
impl Send for CoverageRow
impl Sync for CoverageRow
impl Unpin for CoverageRow
impl UnsafeUnpin for CoverageRow
impl UnwindSafe for CoverageRow
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