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

name: String

The name of the suppression.

type_: SuppressionType

The type of suppression.

opt_extra_info: Option<Vec<String>>

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

frames: Vec<Frame>

The calling context of the suppression.

Trait Implementations

impl PartialEq for Suppression
[src]

fn eq(&self, __arg_0: &Suppression) -> bool

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

fn ne(&self, __arg_0: &Suppression) -> bool

This method tests for !=.

impl Debug for Suppression
[src]

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

Formats the value using the given formatter.

impl Clone for Suppression
[src]

fn clone(&self) -> Suppression

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 Suppression
[src]

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

Formats the value using the given formatter.