Struct fuel_gql_client::schema::Breakpoint
source · [−]pub struct Breakpoint {
pub column: Option<i64>,
pub end_column: Option<i64>,
pub end_line: Option<i64>,
pub id: Option<i64>,
pub instruction_reference: Option<String>,
pub line: Option<i64>,
pub message: Option<String>,
pub offset: Option<i64>,
pub source: Option<Source>,
pub verified: bool,
}
Expand description
Information about a Breakpoint created in setBreakpoints, setFunctionBreakpoints, setInstructionBreakpoints, or setDataBreakpoints.
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.
instruction_reference: Option<String>
An optional memory reference to where the breakpoint is set.
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.
offset: Option<i64>
An optional offset from the instruction reference. This can be negative.
source: Option<Source>
The source where the breakpoint is located.
verified: bool
If true breakpoint could be set (but not necessarily at the desired location).
Trait Implementations
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>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for Breakpoint
impl Send for Breakpoint
impl Sync for Breakpoint
impl Unpin for Breakpoint
impl UnwindSafe for Breakpoint
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more