pub struct BaselineCheckResult {
pub baseline_name: String,
pub baseline_code_lines: u64,
pub current_code_lines: u64,
pub delta: i64,
pub delta_pct: f64,
pub exceeded: bool,
pub max_delta_pct: Option<f64>,
}Expand description
Result of a baseline comparison check.
Fields§
§baseline_name: String§baseline_code_lines: u64§current_code_lines: u64§delta: i64§delta_pct: f64§exceeded: bool§max_delta_pct: Option<f64>Implementations§
Source§impl BaselineCheckResult
impl BaselineCheckResult
pub fn print_summary(&self)
Auto Trait Implementations§
impl Freeze for BaselineCheckResult
impl RefUnwindSafe for BaselineCheckResult
impl Send for BaselineCheckResult
impl Sync for BaselineCheckResult
impl Unpin for BaselineCheckResult
impl UnsafeUnpin for BaselineCheckResult
impl UnwindSafe for BaselineCheckResult
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