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

If set to true, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired. The breakpoints field would be empty and should be ignored.

A 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 Default for ListActiveBreakpointsResponse
[src]

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

impl Clone for ListActiveBreakpointsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListActiveBreakpointsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListActiveBreakpointsResponse
[src]

Auto Trait Implementations