Struct debugserver_types::SetBreakpointsArguments [] [src]

pub struct SetBreakpointsArguments {
    pub breakpoints: Option<Vec<SourceBreakpoint>>,
    pub lines: Option<Vec<i64>>,
    pub source: Source,
    pub source_modified: Option<bool>,
}

Arguments for 'setBreakpoints' request.

Fields

The code locations of the breakpoints.

Deprecated: The code locations of the breakpoints.

The source location of the breakpoints; either source.path or source.reference must be specified.

A value of true indicates that the underlying source has been modified which results in new breakpoint locations.

Trait Implementations

impl Clone for SetBreakpointsArguments
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for SetBreakpointsArguments
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for SetBreakpointsArguments
[src]

[src]

Formats the value using the given formatter.