Enum valgrind::Frame [] [src]

pub enum Frame {
    FrameWildcard,
    ObjFrame {
        glob: String,
    },
    FunFrame {
        glob: String,
    },
}

Variants

FrameWildcard

A frame-level wildcard, represented by '...'.

ObjFrame

An object frame.

Fields

glob: String

A file glob for the path to the object file. This may contain wildcard characters * and ?.

FunFrame

A function frame.

Fields

glob: String

Glob for the name of the function. This may contain wildcard characters * and ?.

Trait Implementations

impl PartialEq for Frame
[src]

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

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

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

This method tests for !=.

impl Debug for Frame
[src]

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

Formats the value using the given formatter.

impl Clone for Frame
[src]

fn clone(&self) -> Frame

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

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

Formats the value using the given formatter.