Enum valgrind::SuppressionType [] [src]

pub enum SuppressionType {
    MemcheckAddr(usize),
    MemcheckCond,
    MemcheckFree,
    MemcheckLeak,
    MemcheckOverlap,
    MemcheckParam,
    MemcheckValue(usize),
    OtherType {
        tool_name: String,
        suppression_type: String,
    },
}

Variants

MemcheckAddr(usize)MemcheckCondMemcheckFreeMemcheckLeakMemcheckOverlapMemcheckParamMemcheckValue(usize)OtherType

Fields

tool_name: String
suppression_type: String

Trait Implementations

impl PartialEq for SuppressionType
[src]

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

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

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

This method tests for !=.

impl Debug for SuppressionType
[src]

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

Formats the value using the given formatter.

impl Clone for SuppressionType
[src]

fn clone(&self) -> SuppressionType

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

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

Formats the value using the given formatter.