Enum valgrind::Frame [] [src]

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

Variants

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

An object frame.

Fields of ObjFrame

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

A function frame.

Fields of FunFrame

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

Trait Implementations

impl Clone for Frame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Frame
[src]

Formats the value using the given formatter.

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

Formats the value using the given formatter. Read more