pub struct PyCoverageData {
pub execution_count: HashMap<(String, String, u32), u64>,
pub hot_functions: Vec<((String, String, u32), u64)>,
pub total_samples: u64,
pub function_locations: HashMap<(String, String, u32), FunctionLocation>,
pub lines_executed: HashMap<String, HashMap<u32, u64>>,
}Fields§
§execution_count: HashMap<(String, String, u32), u64>§hot_functions: Vec<((String, String, u32), u64)>§total_samples: u64§function_locations: HashMap<(String, String, u32), FunctionLocation>§lines_executed: HashMap<String, HashMap<u32, u64>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PyCoverageData
impl RefUnwindSafe for PyCoverageData
impl Send for PyCoverageData
impl Sync for PyCoverageData
impl Unpin for PyCoverageData
impl UnwindSafe for PyCoverageData
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