Struct google_clouddebugger2::ListActiveBreakpointsResponse [] [src]

pub struct ListActiveBreakpointsResponse {
    pub wait_expired: Option<bool>,
    pub next_wait_token: Option<String>,
    pub breakpoints: Option<Vec<Breakpoint>>,
}

Response for listing active 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

The wait_expired field is set to true by the server when the request times out and the field success_on_timeout is set to true.

A wait token that can be used in the next method call to block until the list of breakpoints changes.

List of all active breakpoints. The fields id and location are guaranteed to be set on each breakpoint.

Trait Implementations

impl Debug for ListActiveBreakpointsResponse
[src]

Formats the value using the given formatter.

impl Clone for ListActiveBreakpointsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ListActiveBreakpointsResponse
[src]

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

impl ResponseResult for ListActiveBreakpointsResponse
[src]