Struct debugserver_types::FunctionBreakpoint [] [src]

pub struct FunctionBreakpoint {
    pub condition: Option<String>,
    pub hit_condition: Option<String>,
    pub name: String,
}

Properties of a breakpoint passed to the setFunctionBreakpoints request.

Fields

An optional expression for conditional breakpoints.

An optional expression that controls how many hits of the breakpoint are ignored. The backend is expected to interpret the expression as needed.

The name of the function.

Trait Implementations

impl Clone for FunctionBreakpoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FunctionBreakpoint
[src]

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

This method tests for !=.

impl Debug for FunctionBreakpoint
[src]

Formats the value using the given formatter.