pub struct CodeSizeInspectionReport {
pub scope: CodeSizeScope,
pub base: Option<String>,
pub head: Option<String>,
pub summary: CodeSizeInspectionSummary,
pub config: CodeSizeResolvedConfigSummary,
pub findings: Vec<CodeSizeFinding>,
pub diagnostics: Vec<Diagnostic>,
pub skipped: Vec<CodeSizeSkippedReason>,
}Expand description
Code-size inspection report.
Fields§
§scope: CodeSizeScopeInspection scope.
base: Option<String>Optional base git ref.
head: Option<String>Optional head git ref.
summary: CodeSizeInspectionSummarySummary counts and duration.
config: CodeSizeResolvedConfigSummaryStable configuration explanation.
findings: Vec<CodeSizeFinding>Oversize findings.
diagnostics: Vec<Diagnostic>Operational diagnostics.
skipped: Vec<CodeSizeSkippedReason>Bounded skipped-file reason counts.
Trait Implementations§
Source§impl Clone for CodeSizeInspectionReport
impl Clone for CodeSizeInspectionReport
Source§fn clone(&self) -> CodeSizeInspectionReport
fn clone(&self) -> CodeSizeInspectionReport
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 CodeSizeInspectionReport
impl Debug for CodeSizeInspectionReport
Source§impl Default for CodeSizeInspectionReport
impl Default for CodeSizeInspectionReport
Source§fn default() -> CodeSizeInspectionReport
fn default() -> CodeSizeInspectionReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeSizeInspectionReport
impl<'de> Deserialize<'de> for CodeSizeInspectionReport
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
impl Eq for CodeSizeInspectionReport
Source§impl PartialEq for CodeSizeInspectionReport
impl PartialEq for CodeSizeInspectionReport
Source§fn eq(&self, other: &CodeSizeInspectionReport) -> bool
fn eq(&self, other: &CodeSizeInspectionReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CodeSizeInspectionReport
impl Serialize for CodeSizeInspectionReport
impl StructuralPartialEq for CodeSizeInspectionReport
Auto Trait Implementations§
impl Freeze for CodeSizeInspectionReport
impl RefUnwindSafe for CodeSizeInspectionReport
impl Send for CodeSizeInspectionReport
impl Sync for CodeSizeInspectionReport
impl Unpin for CodeSizeInspectionReport
impl UnsafeUnpin for CodeSizeInspectionReport
impl UnwindSafe for CodeSizeInspectionReport
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.