pub struct TestGap {
pub unit_id: u64,
pub reason: String,
pub priority: f32,
}Expand description
A detected test gap.
Fields§
§unit_id: u64The unit missing tests.
reason: StringWhy this is flagged.
priority: f32Priority score (higher = more urgent).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestGap
impl RefUnwindSafe for TestGap
impl Send for TestGap
impl Sync for TestGap
impl Unpin for TestGap
impl UnsafeUnpin for TestGap
impl UnwindSafe for TestGap
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