[][src]Struct debugserver_types::SetBreakpointsArguments

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

breakpoints: Option<Vec<SourceBreakpoint>>

The code locations of the breakpoints.

lines: Option<Vec<i64>>

Deprecated: The code locations of the breakpoints.

source: Source

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

source_modified: Option<bool>

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

Trait Implementations

impl PartialEq<SetBreakpointsArguments> for SetBreakpointsArguments[src]

impl Clone for SetBreakpointsArguments[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SetBreakpointsArguments[src]

impl Serialize for SetBreakpointsArguments[src]

impl<'de> Deserialize<'de> for SetBreakpointsArguments[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]