pub struct Breakpoint {
pub column: Option<i64>,
pub end_column: Option<i64>,
pub end_line: Option<i64>,
pub id: Option<i64>,
pub line: Option<i64>,
pub message: Option<String>,
pub source: Option<Source>,
pub verified: bool,
}Expand description
Information about a Breakpoint created in setBreakpoints or setFunctionBreakpoints.
Fields§
§column: Option<i64>An optional start column of the actual range covered by the breakpoint.
end_column: Option<i64>An optional end column of the actual range covered by the breakpoint. If no end line is given, then the end column is assumed to be in the start line.
end_line: Option<i64>An optional end line of the actual range covered by the breakpoint.
id: Option<i64>An optional identifier for the breakpoint. It is needed if breakpoint events are used to update or remove breakpoints.
line: Option<i64>The start line of the actual range covered by the breakpoint.
message: Option<String>An optional message about the state of the breakpoint. This is shown to the user and can be used to explain why a breakpoint could not be verified.
source: Option<Source>The source where the breakpoint is located.
verified: boolIf true breakpoint could be set (but not necessarily at the desired location).
Trait Implementations§
Source§impl Clone for Breakpoint
impl Clone for Breakpoint
Source§fn clone(&self) -> Breakpoint
fn clone(&self) -> Breakpoint
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for Breakpoint
impl Debug for Breakpoint
Source§impl<'de> Deserialize<'de> for Breakpoint
impl<'de> Deserialize<'de> for Breakpoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for Breakpoint
impl PartialEq for Breakpoint
Source§fn eq(&self, other: &Breakpoint) -> bool
fn eq(&self, other: &Breakpoint) -> bool
self and other values to be equal, and is used by ==.