Struct valgrind::Suppression [] [src]

pub struct Suppression {
    pub name: String,
    pub type_: SuppressionType,
    pub opt_extra_info: Option<Vec<String>>,
    pub frames: Vec<Frame>,
}

Holds information about a single Valgrind suppression.

Fields

The name of the suppression.

The type of suppression.

Any extra information, where used by the suppression type (e.g. a Memcheck Param suppression).

The calling context of the suppression.

Trait Implementations

impl Clone for Suppression
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Suppression
[src]

Formats the value using the given formatter.

impl PartialEq for Suppression
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for Suppression
[src]

Formats the value using the given formatter. Read more