[][src]Struct debugserver_types::DataBreakpointInfoResponseBody

pub struct DataBreakpointInfoResponseBody {
    pub access_types: Option<Vec<DataBreakpointAccessType>>,
    pub can_persist: Option<bool>,
    pub data_id: Option<String>,
    pub description: String,
}

Fields

access_types: Option<Vec<DataBreakpointAccessType>>

Optional attribute listing the available access types for a potential data breakpoint. A UI frontend could surface this information.

can_persist: Option<bool>

Optional attribute indicating that a potential data breakpoint could be persisted across sessions.

data_id: Option<String>

An identifier for the data on which a data breakpoint can be registered with the setDataBreakpoints request or null if no data breakpoint is available.

description: String

UI string that describes on what data the breakpoint is set on or why a data breakpoint is not available.

Trait Implementations

impl PartialEq<DataBreakpointInfoResponseBody> for DataBreakpointInfoResponseBody[src]

impl Clone for DataBreakpointInfoResponseBody[src]

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

Performs copy-assignment from source. Read more

impl Debug for DataBreakpointInfoResponseBody[src]

impl Serialize for DataBreakpointInfoResponseBody[src]

impl<'de> Deserialize<'de> for DataBreakpointInfoResponseBody[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, U> Into<U> for T where
    U: From<T>, 
[src]

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]