pub struct TestGapParams {
pub min_changes: u32,
pub min_complexity: u32,
pub unit_types: Vec<CodeUnitType>,
}Expand description
Parameters for Query 20: Test Gap.
Fields§
§min_changes: u32Minimum change count to consider.
min_complexity: u32Minimum complexity to consider.
unit_types: Vec<CodeUnitType>Unit types to scan (empty = Function only).
Trait Implementations§
Source§impl Clone for TestGapParams
impl Clone for TestGapParams
Source§fn clone(&self) -> TestGapParams
fn clone(&self) -> TestGapParams
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 moreAuto Trait Implementations§
impl Freeze for TestGapParams
impl RefUnwindSafe for TestGapParams
impl Send for TestGapParams
impl Sync for TestGapParams
impl Unpin for TestGapParams
impl UnsafeUnpin for TestGapParams
impl UnwindSafe for TestGapParams
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