Struct google_clouddebugger2::ListBreakpointsResponse[][src]

pub struct ListBreakpointsResponse {
    pub next_wait_token: Option<String>,
    pub breakpoints: Option<Vec<Breakpoint>>,
}

Response for listing breakpoints.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

A wait token that can be used in the next call to list (REST) or ListBreakpoints (RPC) to block until the list of breakpoints has changes.

List of breakpoints matching the request. The fields id and location are guaranteed to be set on each breakpoint. The fields: stack_frames, evaluated_expressions and variable_table are cleared on each breakpoint regardless of its status.

Trait Implementations

impl Default for ListBreakpointsResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for ListBreakpointsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListBreakpointsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListBreakpointsResponse
[src]

Auto Trait Implementations