Struct debugserver_types::FunctionBreakpoint
[−]
[src]
pub struct FunctionBreakpoint {
pub condition: Option<String>,
pub hit_condition: Option<String>,
pub name: String,
}Properties of a breakpoint passed to the setFunctionBreakpoints request.
Fields
condition: Option<String>
An optional expression for conditional breakpoints.
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.
name: String
The name of the function.
Trait Implementations
impl Clone for FunctionBreakpoint[src]
fn clone(&self) -> FunctionBreakpoint[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for FunctionBreakpoint[src]
fn eq(&self, __arg_0: &FunctionBreakpoint) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &FunctionBreakpoint) -> bool[src]
This method tests for !=.