pub struct CoveredFunction {
pub script_url: String,
pub function_name: String,
pub call_count: u32,
}Expand description
A function that was covered during execution
Fields§
§script_url: StringScript URL
function_name: StringFunction name
call_count: u32Number of times called
Trait Implementations§
Source§impl Clone for CoveredFunction
impl Clone for CoveredFunction
Source§fn clone(&self) -> CoveredFunction
fn clone(&self) -> CoveredFunction
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 CoveredFunction
impl RefUnwindSafe for CoveredFunction
impl Send for CoveredFunction
impl Sync for CoveredFunction
impl Unpin for CoveredFunction
impl UnsafeUnpin for CoveredFunction
impl UnwindSafe for CoveredFunction
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