Trait lcov_parser::summary::Summary
[−]
[src]
pub trait Summary<K, V> { fn iter(&self) -> Iter<K, V>; fn contains_key(&self, k: &K) -> bool; fn get(&self, key: &K) -> Option<&V>; fn len(&self) -> usize; fn is_empty(&self) -> bool { ... } }
Required Methods
fn iter(&self) -> Iter<K, V>
fn contains_key(&self, k: &K) -> bool
fn get(&self, key: &K) -> Option<&V>
fn len(&self) -> usize
Provided Methods
Implementors
impl Summary<SourceFile, File> for Files
impl Summary<BranchUnit, Branch> for BranchBlocks
impl Summary<LineNumber, BranchBlocks> for Branches
impl Summary<LineNumber, Line> for Lines
impl Summary<FunctionName, Function> for Functions
impl Summary<TestName, Test> for Tests