[][src]Struct debugserver_types::DataBreakpoint

pub struct DataBreakpoint {
    pub access_type: Option<DataBreakpointAccessType>,
    pub condition: Option<String>,
    pub data_id: String,
    pub hit_condition: Option<String>,
}

Properties of a data breakpoint passed to the setDataBreakpoints request.

Fields

access_type: Option<DataBreakpointAccessType>

The access type of the data.

condition: Option<String>

An optional expression for conditional breakpoints.

data_id: String

An id representing the data. This id is returned from the dataBreakpointInfo request.

hit_condition: Option<String>

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

Trait Implementations

impl PartialEq<DataBreakpoint> for DataBreakpoint[src]

impl Clone for DataBreakpoint[src]

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

Performs copy-assignment from source. Read more

impl Debug for DataBreakpoint[src]

impl Serialize for DataBreakpoint[src]

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

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<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]