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 Filesimpl Summary<BranchUnit, Branch> for BranchBlocksimpl Summary<LineNumber, BranchBlocks> for Branchesimpl Summary<LineNumber, Line> for Linesimpl Summary<FunctionName, Function> for Functionsimpl Summary<TestName, Test> for Tests