pub struct Coverage {
pub analyzed: u64,
pub stubs: u64,
pub opaque_files: u64,
pub basis: Vec<(CompactString, u64)>,
}Expand description
Files used to produce a query answer.
Fields§
§analyzed: u64Number of traversed analyzed nodes.
stubs: u64Number of traversed stub nodes.
opaque_files: u64Number of traversed analyzed nodes with opaque imports.
basis: Vec<(CompactString, u64)>Traversed analyzed path/hash pairs, sorted by path.
Trait Implementations§
impl Eq for Coverage
impl StructuralPartialEq for Coverage
Auto Trait Implementations§
impl Freeze for Coverage
impl RefUnwindSafe for Coverage
impl Send for Coverage
impl Sync for Coverage
impl Unpin for Coverage
impl UnsafeUnpin for Coverage
impl UnwindSafe for Coverage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.