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 it's status.

Trait Implementations

impl Default for ListBreakpointsResponse
[src]

[src]

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

impl Clone for ListBreakpointsResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ListBreakpointsResponse
[src]

[src]

Formats the value using the given formatter.

impl ResponseResult for ListBreakpointsResponse
[src]