Struct valgrind::Suppressions [] [src]

pub struct Suppressions {
    // some fields omitted
}

A set of Valgrind suppressions.

Methods

impl Suppressions
[src]

fn parse<B: BufRead>(buf: &mut B) -> Result<SuppressionsParseError>

Parses the suppressions from buf in Valgrind suppression syntax.

See also

fn add_all(&mut self, other: &Suppressions)

Clones all of the suppressions in other and adds them to these suppressions.

fn count(&self) -> usize

fn iter<'a>(&'a self) -> Iter<'a, Suppression>

Trait Implementations

impl Clone for Suppressions
[src]

fn clone(&self) -> Suppressions

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Display for Suppressions
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl<'a> IntoIterator for &'a Suppressions
[src]

type Item = &'a Suppression

The type of the elements being iterated over.

type IntoIter = Iter<'a, Suppression>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Iter<'a, Suppression>

Creates an iterator from a value. Read more